diff options
| -rw-r--r-- | .config/doom/config.el | 5 | ||||
| -rw-r--r-- | .config/doom/init.el | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/.config/doom/config.el b/.config/doom/config.el index 415db2d..f5e25ea 100644 --- a/.config/doom/config.el +++ b/.config/doom/config.el @@ -129,9 +129,12 @@ (dolist (hook '(erc-mode-hook org-mode-hook text-mode-hook)) (add-hook hook #'abbrev-mode)) -;; Tweaking more defaults. +;; Set the default width of tabs. This can be tweaked away by `editorconfig' +;; support, but at least set some defaults now. (setq-default tab-width 4) (setq tab-width 4) + +;; No auto save. (setq-default auto-save-default nil) ;;; Spell checking diff --git a/.config/doom/init.el b/.config/doom/init.el index bb6822e..7fff5c9 100644 --- a/.config/doom/init.el +++ b/.config/doom/init.el @@ -74,7 +74,7 @@ ;;debugger ; FIXME stepping through code, to help you add bugs ;;direnv docker - ;;editorconfig ; let someone else argue about tabs vs spaces + editorconfig ; let someone else argue about tabs vs spaces ;;ein ; tame Jupyter notebooks with emacs (eval +overlay) ; run code, run (also, repls) ;;gist ; interacting with github gists |
