25 lines
602 B
Lua
25 lines
602 B
Lua
return {
|
|
|
|
-- change neo-tree confi
|
|
{
|
|
"nvim-neo-tree/neo-tree.nvim",
|
|
-- opts will be merged with the parent spec
|
|
opts = {
|
|
filesystem = {
|
|
filtered_items = {
|
|
visible = true, -- when true, they will just be displayed differently than normal items
|
|
hide_dotfiles = false,
|
|
hide_gitignored = true,
|
|
},
|
|
|
|
-- This will use the OS level file watchers to detect changes
|
|
-- instead of relying on nvim autocmd events.
|
|
use_libuv_file_watcher = true,
|
|
},
|
|
window = {
|
|
position = "right",
|
|
},
|
|
},
|
|
},
|
|
}
|