From ce4bc3bd0c966e8e5ceff3a92cd001126ce578b8 Mon Sep 17 00:00:00 2001 From: 10sr <8.slashes@gmail.com> Date: Tue, 26 May 2020 13:53:56 +0900 Subject: [PATCH] Comment out highlight-indentation-mode --- emacs.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/emacs.el b/emacs.el index eddf90e..d66d26c 100644 --- a/emacs.el +++ b/emacs.el @@ -1038,8 +1038,10 @@ THEM are function and its args." prog-mode-hook text-mode-hook )) - (add-hook hook - 'highlight-indentation-mode))) + ;; Makes display slow? + ;; (add-hook hook + ;; 'highlight-indentation-mode) + )) (with-eval-after-load 'highlight-indentation (set-face-background 'highlight-indentation-face "color-236")) ;; (set-face-background 'highlight-indentation-current-column-face "#c3b3b3") @@ -3023,6 +3025,7 @@ Any output will be written to current buffer." (propertize " " 'face (overlay-get mmv-mark-overlay 'face))) (move-overlay mmv-mark-overlay mark-position mark-position))))) +;; Makes display very slow? (add-hook 'pre-redisplay-functions #'mmv-draw-mark) (defun mmv-toggle-mark-visibility ()