aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/plugins')
-rw-r--r--nvim/lua/plugins/ui.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/nvim/lua/plugins/ui.lua b/nvim/lua/plugins/ui.lua
index 10c4762..f1ca409 100644
--- a/nvim/lua/plugins/ui.lua
+++ b/nvim/lua/plugins/ui.lua
@@ -30,6 +30,11 @@ return {
30 }, 30 },
31 config = function() 31 config = function()
32 require("nvim-tree").setup({ 32 require("nvim-tree").setup({
33 update_focused_file = {
34 enable = true,
35 update_root = false,
36 ignore_list = {},
37 },
33 view = { 38 view = {
34 width = 30, 39 width = 30,
35 }, 40 },
@@ -54,5 +59,4 @@ return {
54 "RRethy/vim-illuminate", 59 "RRethy/vim-illuminate",
55 event = "BufReadPost", 60 event = "BufReadPost",
56 }, 61 },
57
58} 62}