Set fill-column for lisp
This commit is contained in:
parent
0c51d8332c
commit
ec0296421e
1 changed files with 3 additions and 1 deletions
|
@ -92,7 +92,8 @@ Uses `mk/hyperspec-dir-locations' to find the directory."
|
||||||
(face-remap-add-relative 'font-lock-keyword-face nil :slant 'italic))))
|
(face-remap-add-relative 'font-lock-keyword-face nil :slant 'italic))))
|
||||||
:mode (("\\.el$" . emacs-lisp-mode))
|
:mode (("\\.el$" . emacs-lisp-mode))
|
||||||
:config
|
: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
|
(use-package lisp-mode
|
||||||
:ensure nil
|
:ensure nil
|
||||||
|
@ -109,6 +110,7 @@ Uses `mk/hyperspec-dir-locations' to find the directory."
|
||||||
(setq inferior-lisp-program "/usr/bin/sbcl --noinform"))
|
(setq inferior-lisp-program "/usr/bin/sbcl --noinform"))
|
||||||
:config
|
:config
|
||||||
(setq-local lisp-indent-function 'common-lisp-indent-function)
|
(setq-local lisp-indent-function 'common-lisp-indent-function)
|
||||||
|
(setq-local fill-column 84)
|
||||||
(defvar g-cl-function-names
|
(defvar g-cl-function-names
|
||||||
'("*" "+" "-" "/" "/=" "1+" "1-" "<" "<=" "=" ">"
|
'("*" "+" "-" "/" "/=" "1+" "1-" "<" "<=" "=" ">"
|
||||||
">=" "abort" "abs" "acons" "acos" "acosh" "add-method" "adjoin"
|
">=" "abort" "abs" "acons" "acos" "acosh" "add-method" "adjoin"
|
||||||
|
|
Loading…
Add table
Reference in a new issue