diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2026-04-03 03:55:52 +0200 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2026-04-03 03:56:12 +0200 |
| commit | ff08339904ac4cb49ece99a169e61eaa26ac13f7 (patch) | |
| tree | 12acc31ac90a5ea9cc4bdc4e8a0f5416ca45dd04 /.config/emacs/modules | |
| parent | 9baae606c118d2bbaf2307bed1a9c236eafdb0f7 (diff) | |
emacs: Add smart-tabs-mode
Diffstat (limited to '.config/emacs/modules')
| -rw-r--r-- | .config/emacs/modules/mm-editing.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.config/emacs/modules/mm-editing.el b/.config/emacs/modules/mm-editing.el index 5281743..5b6c7a4 100644 --- a/.config/emacs/modules/mm-editing.el +++ b/.config/emacs/modules/mm-editing.el @@ -123,6 +123,13 @@ those should be listed in `mm-editing-indentation-settings-alist'." (sh-indent-for-case-label 0) (sh-indent-for-case-alt #'+)) +;; Indent with tabs and align with spaces +;; PKG-INTERN +(use-package smart-tabs-mode + :load-path (lambda () (expand-file-name "site-lisp/smart-tabs-mode.el" + mm-config-directory)) + :hook after-init) + ;;; Code Commenting |