From 7c7f2fa23b386977be70e93674923df52baf7940 Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Mon, 6 May 2024 09:09:05 +1200 Subject: [PATCH] emacs: fix lisp-hook's parens --- .emacs.d/init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index ba72999..01e580d 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -77,7 +77,8 @@ One will be created if none exist." (defun lisp-hook () (indent-spc-hook) - (keymap-local-set "C-c l" 'common-lisp-hyperspec)) + (keymap-local-set "C-c l" 'common-lisp-hyperspec) + (setq-local tab-width 2)) (add-hook 'lisp-mode-hook 'lisp-hook) (add-hook 'lisp-data-mode-hook 'lisp-hook)