Improved neovim config
This commit is contained in:
@ -4,14 +4,26 @@ return {
|
||||
dependencies = {
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
},
|
||||
config = function()
|
||||
require("nvim-tree").setup({
|
||||
view = {
|
||||
width = 35,
|
||||
},
|
||||
renderer = {
|
||||
root_folder_label = false
|
||||
},
|
||||
})
|
||||
opts = {
|
||||
filesystem_watchers = {
|
||||
enable = true,
|
||||
},
|
||||
filters = {
|
||||
dotfiles = false,
|
||||
},
|
||||
renderer = {
|
||||
root_folder_label = false
|
||||
},
|
||||
sync_root_with_cwd = true,
|
||||
update_focused_file = {
|
||||
enable = true,
|
||||
update_root = false,
|
||||
},
|
||||
view = {
|
||||
width = 35,
|
||||
},
|
||||
},
|
||||
config = function(_, opts)
|
||||
require("nvim-tree").setup(opts)
|
||||
end,
|
||||
}
|
||||
|
Reference in New Issue
Block a user