diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-10-23 02:35:59 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-10-23 02:35:59 +0200 |
commit | 564b181d15f4e55c678bf842021e2da6042a83c8 (patch) | |
tree | ff1d09c16e3025b34b0ca4c9431587d241c6cc23 /.config/emacs/modules | |
parent | 5d2f37f8e7d69c25d5a585c5cceaaf6533eb7da2 (diff) |
emacs: Try to make indents less cancer
Diffstat (limited to '.config/emacs/modules')
-rw-r--r-- | .config/emacs/modules/mm-editing.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.config/emacs/modules/mm-editing.el b/.config/emacs/modules/mm-editing.el index 09a70e3..fdde408 100644 --- a/.config/emacs/modules/mm-editing.el +++ b/.config/emacs/modules/mm-editing.el @@ -105,6 +105,17 @@ those should be listed in `mm-editing-indentation-settings'." (set (make-local-variable extra) tabsize))))) +;;; Make Tab Not Suck + +(use-package indent + :custom + (tab-always-indent t)) + +(use-package electric + :config + (setq-default electric-indent-inhibit t)) + + ;;; Multiple Cursors (defmacro mm--define-mc-marking-command (name search-function noun) |