From 045fc4730a03f09d3fbdf4db7b9c60e9598d8844 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Wed, 18 Nov 2020 10:29:43 -0500 Subject: [PATCH] Fix highlight-indent-guides-mode hook --- emacs/.emacs.d/init.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 001d12f..717955a 100755 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -2701,8 +2701,8 @@ Like [[help:electric-indent-mode][electric-indent-mode]] but reindents after eve #+BEGIN_SRC emacs-lisp (use-package highlight-indent-guides :commands highlight-indent-guides-mode - :hook ((python . highlight-indent-guides-mode) - (yaml . highlight-indent-guides-mode)) + :hook ((python-mode . highlight-indent-guides-mode) + (yaml-mode . highlight-indent-guides-mode)) :init (leader-def-key "th" #'highlight-indent-guides-mode) :custom