From ec0296421e20b4b92771198d8694832b33e78534 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Sat, 30 Mar 2024 08:30:37 +0100 Subject: [PATCH] Set fill-column for lisp --- bundle/bundle--lisp.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bundle/bundle--lisp.el b/bundle/bundle--lisp.el index 7d43520b..8bc05948 100644 --- a/bundle/bundle--lisp.el +++ b/bundle/bundle--lisp.el @@ -92,7 +92,8 @@ Uses `mk/hyperspec-dir-locations' to find the directory." (face-remap-add-relative 'font-lock-keyword-face nil :slant 'italic)))) :mode (("\\.el$" . emacs-lisp-mode)) :config - (setq-local lisp-indent-function 'lisp-indent-function)) + (setq-local lisp-indent-function 'lisp-indent-function) + (setq-local fill-column 84)) (use-package lisp-mode :ensure nil @@ -109,6 +110,7 @@ Uses `mk/hyperspec-dir-locations' to find the directory." (setq inferior-lisp-program "/usr/bin/sbcl --noinform")) :config (setq-local lisp-indent-function 'common-lisp-indent-function) + (setq-local fill-column 84) (defvar g-cl-function-names '("*" "+" "-" "/" "/=" "1+" "1-" "<" "<=" "=" ">" ">=" "abort" "abs" "acons" "acos" "acosh" "add-method" "adjoin"