From 971331bee694b04ad152bacb6d6c433ce401f553 Mon Sep 17 00:00:00 2001 From: Saeed Afzal Date: Tue, 19 Apr 2022 13:33:21 +0100 Subject: [PATCH] Update nvimtree config --- lua/plugins/config/nvimtree.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lua/plugins/config/nvimtree.lua b/lua/plugins/config/nvimtree.lua index 170f5f8..1b53293 100644 --- a/lua/plugins/config/nvimtree.lua +++ b/lua/plugins/config/nvimtree.lua @@ -1,6 +1,5 @@ local g = vim.g -g.nvim_tree_indent_markers = 1 g.nvim_tree_highlight_opened_files = 1 g.nvim_tree_highlight_opened_files = 1 g.nvim_tree_group_empty = 1 @@ -20,5 +19,10 @@ require("nvim-tree").setup { }, view = { hide_root_folder = true + }, + renderer = { + indent_markers = { + enable = true + } } }