From f01d02ceaa204b13978f6d706f861ab1cbf17478 Mon Sep 17 00:00:00 2001 From: Max Regan Date: Sun, 5 Jul 2020 13:30:30 -0700 Subject: [PATCH] emacs: disable hs-minor-mode, breaks coloring --- .emacs.d/init.org | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.emacs.d/init.org b/.emacs.d/init.org index 59c335b..9c752c6 100644 --- a/.emacs.d/init.org +++ b/.emacs.d/init.org @@ -344,12 +344,14 @@ Install projectile for managing buffers within projects. #+END_SRC +=TODO: Fix this. It seems like this breaks syntax highlighting.= + Use the builtin =hs-minor-mode= to hide the initial comment in code files- usually its a big license notice. #+BEGIN_SRC emacs-lisp -(add-hook 'prog-mode-hook #'hs-minor-mode) -(add-hook 'hs-minor-mode-hook 'hs-hide-initial-comment-block) +;; (add-hook 'prog-mode-hook #'hs-minor-mode) +;; (add-hook 'hs-minor-mode-hook 'hs-hide-initial-comment-block) #+END_SRC *** Whitespace (=ws-butler=)