summaryrefslogtreecommitdiff
path: root/lua/plugins
diff options
context:
space:
mode:
authorbrustybee <bee@4d2.org>2026-03-25 01:38:02 +0530
committerbrustybee <bee@4d2.org>2026-03-25 01:38:02 +0530
commit3d42c365e6a99f8c611f77946d2112efb159db85 (patch)
tree6487f272330faa1f1658bcdbc0d30b729925384b /lua/plugins
parenteebd250aef9b71dfe2a8a6b6893a5ba029c4b8b9 (diff)
disable treesitter for hlchunk
Diffstat (limited to 'lua/plugins')
-rw-r--r--lua/plugins/ui.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/plugins/ui.lua b/lua/plugins/ui.lua
index c399416..33d869c 100644
--- a/lua/plugins/ui.lua
+++ b/lua/plugins/ui.lua
@@ -38,7 +38,7 @@ return {
-- vim.api.nvim_get_hl(0, { name = "IndentBlanklineIndent1" }),
-- vim.api.nvim_get_hl(0, { name = "DiagnosticError" }),
-- },
- use_treesitter = true,
+ use_treesitter = false,
chars = {
horizontal_line = "─",
vertical_line = "│",
@@ -58,7 +58,7 @@ return {
enable = true,
priority = 10,
style = { vim.api.nvim_get_hl(0, { name = "Whitespace" }) },
- use_treesitter = true,
+ use_treesitter = false,
exclude_filetypes = ignored_filetypes,
chars = { "│" },
ahead_lines = 5,