dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

commit 1cfb5e21112e8e29044748ae22c54a70f66d6c88
parent 6edceaac95877ea03d73da29ccc11cce5346f567
Author: Lukas Henkel <lh@entf.net>
Date:   Mon, 27 Sep 2021 20:30:10 +0200

No indent-tabs-mode in Lisp

Diffstat:
Mconfig.org | 10++++++++++
1 file changed, 10 insertions(+), 0 deletions(-)

diff --git a/config.org b/config.org @@ -356,6 +356,16 @@ Geiser for Scheme. (use-package geiser-guile :straight t) #+end_src + +Disable tabs for indenting in any lisps, I really hate this. +#+begin_src emacs-lisp + (let ((d (lambda () + (setq indent-tabs-mode nil)))) + (add-hook 'emacs-lisp-mode-hook d) + (add-hook 'sly-mode-hook d) + (add-hook 'geiser-mode-hook d) + (add-hook 'scheme-mode-hook d)) +#+end_src ** Go #+begin_src emacs-lisp (use-package go-mode