From 47e9ce90ff07db8b20a4c7afae30210c0747525f Mon Sep 17 00:00:00 2001 From: siduck Date: Sun, 1 Oct 2023 11:15:23 +0530 Subject: [PATCH] use slim chars for blankline indent also enable indent markers in nvimtree --- lua/plugins/configs/nvimtree.lua | 2 +- lua/plugins/configs/others.lua | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/plugins/configs/nvimtree.lua b/lua/plugins/configs/nvimtree.lua index b4a8aee..c54248e 100644 --- a/lua/plugins/configs/nvimtree.lua +++ b/lua/plugins/configs/nvimtree.lua @@ -36,7 +36,7 @@ local options = { highlight_opened_files = "none", indent_markers = { - enable = false, + enable = true, }, icons = { diff --git a/lua/plugins/configs/others.lua b/lua/plugins/configs/others.lua index fea5af2..9e01f8d 100644 --- a/lua/plugins/configs/others.lua +++ b/lua/plugins/configs/others.lua @@ -2,8 +2,8 @@ local M = {} local utils = require "core.utils" M.blankline = { - indent = { highlight = "IblChar" }, - scope = { highlight = "IblScopeChar" }, + indent = { char = "│", highlight = "IblChar" }, + scope = { char = "│", highlight = "IblScopeChar" }, } M.luasnip = function(opts)