diff --git a/default.el b/default.el index b8b37e3..5b41447 100644 --- a/default.el +++ b/default.el @@ -272,6 +272,10 @@ end tell")) :init (pixel-scroll-precision-mode 1)) +(use-package simple + :init + (indent-tabs-mode 0)) + (write-region (format "%s,%s\n" (string-trim (shell-command-to-string "git --git-dir ~/emacs-config/.git rev-parse HEAD")) diff --git a/emacs-configuration.org b/emacs-configuration.org index 2325c6d..2192f43 100644 --- a/emacs-configuration.org +++ b/emacs-configuration.org @@ -1712,6 +1712,27 @@ Project-x should be obsolete for this purpose, but I haven't figured it out yet. <>) #+end_src +** Indentation + +Don't use tabs for indentation. + +#+headers: :noweb-ref simple-init +#+begin_src emacs-lisp + (indent-tabs-mode 0) +#+end_src + +#+RESULTS: +: t + +#+headers: :exports none +#+headers: :noweb yes +#+headers: :tangle default.el +#+begin_src emacs-lisp + (use-package simple + :init + <>) +#+end_src + * Benchmarking Use [[https://github.com/dholm/benchmark-init-el][benchmark-init]] to benchmark Emacs' initialization.