mirror of https://github.com/LazyVim/starter
28 lines
523 B
Lua
28 lines
523 B
Lua
return {
|
|
"nvim-neo-tree/neo-tree.nvim",
|
|
opts = {
|
|
filesystem = {
|
|
filtered_items = {
|
|
visible = true,
|
|
show_hidden_count = true,
|
|
hide_dotfiles = false,
|
|
hide_gitignored = true,
|
|
hide_by_name = {
|
|
-- '.git',
|
|
-- '.DS_Store',
|
|
-- 'thumbs.db',
|
|
},
|
|
never_show = {},
|
|
},
|
|
},
|
|
window = {
|
|
position = "right",
|
|
width = 40,
|
|
mapping_options = {
|
|
noremap = true,
|
|
nowait = true,
|
|
},
|
|
},
|
|
},
|
|
}
|