summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2018-10-29 23:32:19 -0400
committerAmin Bandali <bandali@gnu.org>2018-10-29 23:32:59 -0400
commit97cf0fc47708722e8454dd87b72a587f3dd6864d (patch)
tree4127bf8b7868c7387421dfc79377aec9723a698b
parent2e7aa30f7e46eabf984adc1018d7ccbdfefecca8 (diff)
downloadconfigs-97cf0fc47708722e8454dd87b72a587f3dd6864d.tar.gz
configs-97cf0fc47708722e8454dd87b72a587f3dd6864d.tar.xz
configs-97cf0fc47708722e8454dd87b72a587f3dd6864d.zip
[emacs] disable highlight-indent-guides-mode in org-mode
causes *huge* langging when typing a large org file like my rc.org TODO: investigate and report to upstream
-rw-r--r--init.org3
1 files changed, 2 insertions, 1 deletions
diff --git a/init.org b/init.org
index 3448670..5ead731 100644
--- a/init.org
+++ b/init.org
@@ -1529,7 +1529,8 @@ Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]].
(use-package highlight-indent-guides
:demand t
:hook ((prog-mode . highlight-indent-guides-mode)
- (org-mode . highlight-indent-guides-mode))
+ ;; (org-mode . highlight-indent-guides-mode)
+ )
:config
(setq highlight-indent-guides-character ?\|)
(setq highlight-indent-guides-auto-enabled nil)