summaryrefslogtreecommitdiff
path: root/.config/emacs/modules/mm-editing.el
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-10-19 17:06:14 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-10-19 17:06:14 +0200
commitb3bd08a2c380e146a2742571147796b0cfec8bea (patch)
treea6c43bc979e15b9a8e86e9f4577e31b0034ada8f /.config/emacs/modules/mm-editing.el
parent3ec632463f40173cc24701ad3aae1d5a0cd13854 (diff)
emacs: Use spaces in lisp-interaction-mode
Diffstat (limited to '.config/emacs/modules/mm-editing.el')
-rw-r--r--.config/emacs/modules/mm-editing.el33
1 files changed, 17 insertions, 16 deletions
diff --git a/.config/emacs/modules/mm-editing.el b/.config/emacs/modules/mm-editing.el
index 43ca211..5f51d7a 100644
--- a/.config/emacs/modules/mm-editing.el
+++ b/.config/emacs/modules/mm-editing.el
@@ -25,22 +25,23 @@
indent-tabs-mode t)
(defvar mm-editing-indentation-settings-alist
- '((c-mode . (:extras c-basic-offset))
- (c-ts-mode . (:extras c-ts-mode-indent-offset))
- (css-mode . (:extras css-indent-offset))
- (emacs-lisp-mode . (:width 8 :spaces t)) ; GNU code uses 8-column tabs
- (go-ts-mode . (:extras go-ts-mode-indent-offset))
- (go-mod-ts-mode . (:extras go-ts-mode-indent-offset))
- (gsp-ts-mode . (:width 2 :extras gsp-ts-mode-indent-rules))
- (helpful-mode . (:width 8)) ; GNU code uses 8-column tabs
- (lisp-data-mode . (:spaces t))
- (lisp-mode . (:spaces t))
- (org-mode . (:spaces t))
- (python-mode . (:extras python-indent-offset))
- (python-ts-mode . (:extras python-indent-offset))
- (sgml-mode . (:extras sgml-basic-offset))
- (sh-mode . (:extras sh-basic-offset))
- (vimscript-ts-mode . (:extras vimscript-ts-mode-indent-level)))
+ '((c-mode . (:extras c-basic-offset))
+ (c-ts-mode . (:extras c-ts-mode-indent-offset))
+ (css-mode . (:extras css-indent-offset))
+ (emacs-lisp-mode . (:width 8 :spaces t)) ; GNU code uses 8-column tabs
+ (go-ts-mode . (:extras go-ts-mode-indent-offset))
+ (go-mod-ts-mode . (:extras go-ts-mode-indent-offset))
+ (gsp-ts-mode . (:width 2 :extras gsp-ts-mode-indent-rules))
+ (helpful-mode . (:width 8)) ; GNU code uses 8-column tabs
+ (lisp-data-mode . (:spaces t))
+ (lisp-interaction-mode . (:spaces t))
+ (lisp-mode . (:spaces t))
+ (org-mode . (:spaces t))
+ (python-mode . (:extras python-indent-offset))
+ (python-ts-mode . (:extras python-indent-offset))
+ (sgml-mode . (:extras sgml-basic-offset))
+ (sh-mode . (:extras sh-basic-offset))
+ (vimscript-ts-mode . (:extras vimscript-ts-mode-indent-level)))
"Alist of indentation settings.
Each pair in this alist is of the form (MODE . SETTINGS) where MODE
specifies the mode for which the given SETTINGS should apply.