diff options
| author | yuzu-eva <stevenhu@web.de> | 2022-05-28 18:48:20 +0200 |
|---|---|---|
| committer | yuzu-eva <stevenhu@web.de> | 2022-05-28 18:48:20 +0200 |
| commit | 6979654c01fd7d3e68408b15aaed478a71553629 (patch) | |
| tree | 328e9cfed78fe9d3ec470f6b0284465927689489 /.config/nvim/lua/user/plugins/nvim-tree.lua | |
| parent | 25d7bd9684da7785290ecdb8760fb9e16a950adb (diff) | |
added luasnip
Diffstat (limited to '.config/nvim/lua/user/plugins/nvim-tree.lua')
| -rw-r--r-- | .config/nvim/lua/user/plugins/nvim-tree.lua | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.config/nvim/lua/user/plugins/nvim-tree.lua b/.config/nvim/lua/user/plugins/nvim-tree.lua index a4173e7..3c425c5 100644 --- a/.config/nvim/lua/user/plugins/nvim-tree.lua +++ b/.config/nvim/lua/user/plugins/nvim-tree.lua @@ -1,11 +1,11 @@ --- vim.g.nvim_tree_git_hl = 1 -vim.g.nvim_tree_highlight_opened_files = 1 -vim.g.nvim_tree_group_empty = 1 - require('nvim-tree').setup { - git = { - ignore = false, - }, + renderer = { + highlight_opened_files = "all", + group_empty = true, + }, + git = { + ignore = false, + }, } vim.cmd [[highlight NvimTreeIndentMarker guifg=#30323E]] |
