feat(nvim-tree): enable rnu for file explorer
This commit is contained in:
parent
03e3ea2841
commit
13a5d0093b
1 changed files with 8 additions and 6 deletions
|
@ -7,12 +7,6 @@ g.nvim_tree_git_hl = 1
|
|||
g.nvim_tree_refresh_wait = 300
|
||||
|
||||
g.nvim_tree_special_files = {}
|
||||
g.nvim_tree_show_icons = {
|
||||
git = 1,
|
||||
folders = 1,
|
||||
files = 1,
|
||||
folder_arrows = 1,
|
||||
}
|
||||
|
||||
g.nvim_tree_icons = {
|
||||
default = '',
|
||||
|
@ -39,6 +33,14 @@ local args = {
|
|||
update_focused_file = {
|
||||
enable = true,
|
||||
},
|
||||
view = {
|
||||
width = 35,
|
||||
number = true,
|
||||
relativenumber = true,
|
||||
},
|
||||
git = {
|
||||
ignore = true,
|
||||
},
|
||||
}
|
||||
|
||||
require('nvim-tree').setup(vim.tbl_deep_extend('force', args, config.nvim_tree or {}))
|
||||
|
|
Loading…
Add table
Reference in a new issue