summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorAshley Duckworth2021-01-22 14:58:54 -0600
committerAshley Duckworth2021-01-22 14:58:54 -0600
commitf34addad3fbf7738095e1433f1cc3a6e37d4f9c5 (patch)
tree1f6eaa7a5e0b131f643d04976acc296e16286239 /config.org
parentSetup prettify-mode (diff)
downloademacs-f34addad3fbf7738095e1433f1cc3a6e37d4f9c5.tar.gz
emacs-f34addad3fbf7738095e1433f1cc3a6e37d4f9c5.zip
Add stuff to common-lisp-indent-function
Diffstat (limited to 'config.org')
-rw-r--r--config.org7
1 files changed, 7 insertions, 0 deletions
diff --git a/config.org b/config.org index 1c3e2e9..ed4a474 100644 --- a/config.org +++ b/config.org
@@ -1173,6 +1173,13 @@ checks for a shebang).
1173 1173
1174#+begin_src emacs-lisp :noweb-ref settings 1174#+begin_src emacs-lisp :noweb-ref settings
1175 (setq-default lisp-indent-function #'common-lisp-indent-function) 1175 (setq-default lisp-indent-function #'common-lisp-indent-function)
1176 (put 'cl-flet 'common-lisp-indent-function
1177 (get 'flet 'common-lisp-indent-function))
1178 (put 'cl-labels 'common-lisp-indent-function
1179 (get 'labels 'common-lisp-indent-function))
1180 (put 'if 'common-lisp-indent-function 2)
1181 (put 'dotimes-protect 'common-lisp-indent-function
1182 (get 'when 'common-lisp-indent-function))
1176#+end_src 1183#+end_src
1177 1184
1178* Applications 1185* Applications