Files
dotfiles/nvim/lua/plugins/tree.lua
2025-06-14 20:26:14 +02:00

19 lines
533 B
Lua

return {
"nvim-neo-tree/neo-tree.nvim",
opts = {
filesystem = {
filtered_items = {
hide_dotfiles = false, -- show dotfiles
hide_gitignored = false, -- show gitignored files
},
follow_current_file = {
enabled = true, -- focus on the current file in the tree
},
use_libuv_file_watcher = true, -- use libuv for file watching
},
window = {
width = 25,
},
},
}