From 2fa38381ee2e96fd21bd6ec55cc64a898d303712 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 13 Jul 2022 18:49:42 +0100 Subject: [PATCH] fix(editor): change highlight indentation guides back to 'column mode It turns out that using the 'character mode causes very noticeable performance degradation and straight up lag when typing in a lot of programming languages. Setting it back to 'column seems to resolved this for me. --- modules/editor/siren-highlight-indent-guides.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/editor/siren-highlight-indent-guides.el b/modules/editor/siren-highlight-indent-guides.el index 12abc93..8f2da9a 100644 --- a/modules/editor/siren-highlight-indent-guides.el +++ b/modules/editor/siren-highlight-indent-guides.el @@ -14,7 +14,7 @@ :custom (highlight-indent-guides-auto-enabled nil) (highlight-indent-guides-character ?\u2502) - (highlight-indent-guides-method 'character) + (highlight-indent-guides-method 'column) (highlight-indent-guides-responsive nil)) (provide 'siren-highlight-indent-guides)