summaryrefslogtreecommitdiff
path: root/lua/lvim/core/indentlines.lua
diff options
context:
space:
mode:
authorLostNeophyte <[email protected]>2022-11-28 19:11:06 +0100
committerGitHub <[email protected]>2022-11-28 19:11:06 +0100
commitfb7da7bc788849ae0b735eeec521ea677c35de1f (patch)
tree2ee2866dfbe179e596388261bfd1932884d21a1b /lua/lvim/core/indentlines.lua
parent9347abc1d4d30867fcc6b30a796d1cdb761f4840 (diff)
perf: handle big files better (#3449)
fixes https://github.com/LunarVim/LunarVim/issues/3393
Diffstat (limited to 'lua/lvim/core/indentlines.lua')
-rw-r--r--lua/lvim/core/indentlines.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/lvim/core/indentlines.lua b/lua/lvim/core/indentlines.lua
index 1544b832..dc4a72ba 100644
--- a/lua/lvim/core/indentlines.lua
+++ b/lua/lvim/core/indentlines.lua
@@ -20,8 +20,8 @@ M.config = function()
char = lvim.icons.ui.LineLeft,
show_trailing_blankline_indent = false,
show_first_indent_level = true,
- use_treesitter = false,
- show_current_context = false,
+ use_treesitter = true,
+ show_current_context = true,
},
}
end