diff options
author | Jesús <heckyel@hyperbola.info> | 2018-11-01 22:22:52 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2018-11-01 22:22:52 -0500 |
commit | e28ea4e2df48b305606a0d4bd146d648304cce96 (patch) | |
tree | 9f59c61031f521024edfba49fec83bb0359b1dd9 /lisp/init-indent-guides.el | |
parent | aaa86c4187942abc0869a133e917dbf32b95bb6b (diff) | |
download | emacs-personal-e28ea4e2df48b305606a0d4bd146d648304cce96.tar.lz emacs-personal-e28ea4e2df48b305606a0d4bd146d648304cce96.tar.xz emacs-personal-e28ea4e2df48b305606a0d4bd146d648304cce96.zip |
Disable for default init-guides
when this default mode is used in files of more than 15000 lines of code
it freeze!, is better to look at the file without the guidelines
and then activate this mode.
Diffstat (limited to 'lisp/init-indent-guides.el')
-rw-r--r-- | lisp/init-indent-guides.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/init-indent-guides.el b/lisp/init-indent-guides.el index 221c7ca..24fb8d2 100644 --- a/lisp/init-indent-guides.el +++ b/lisp/init-indent-guides.el @@ -4,7 +4,6 @@ :config (setq highlight-indent-guides-method 'character) ;; Indent character samples: fill, column or character - (setq highlight-indent-guides-method 'character) - (add-hook 'prog-mode-hook 'highlight-indent-guides-mode)) + (setq highlight-indent-guides-method 'character)) (provide 'init-indent-guides) |