2022-11-30 14:51:08 +00:00
|
|
|
vim.g.loaded_netrw = 1
|
2022-11-01 15:26:31 +00:00
|
|
|
vim.g.loaded_netrwPlugin = 1
|
2022-11-07 16:41:35 +00:00
|
|
|
require('nvim-tree').setup {
|
2022-11-30 14:51:08 +00:00
|
|
|
open_on_setup=true,
|
2022-11-30 16:29:42 +00:00
|
|
|
open_on_setup_file=false,
|
2022-11-30 14:51:08 +00:00
|
|
|
hijack_cursor=true,
|
|
|
|
sync_root_with_cwd=true,
|
|
|
|
update_focused_file = {
|
|
|
|
enable = true,
|
|
|
|
},
|
|
|
|
diagnostics = {
|
|
|
|
enable = true,
|
|
|
|
show_on_dirs = true,
|
|
|
|
},
|
2022-11-02 13:40:30 +00:00
|
|
|
filters = { custom = { "^.git$" } },
|
|
|
|
renderer = {
|
|
|
|
group_empty = true,
|
|
|
|
highlight_git = true,
|
|
|
|
},
|
2022-11-01 14:52:38 +00:00
|
|
|
}
|