dotfiles/nvim/lua/plugins/neo-tree.lua

32 lines
536 B
Lua
Raw Permalink Normal View History

2024-03-02 17:25:11 +01:00
return {
{
'nvim-neo-tree/neo-tree.nvim',
branch = "v3.x",
dependencies = {
{'nvim-lua/plenary.nvim'},
{'nvim-tree/nvim-web-devicons'},
{'MunifTanjim/nui.nvim'}
},
config = function ()
require("neo-tree").setup {
enable_git_status = true,
enable_diagnostics = true,
2024-06-23 19:33:59 +02:00
sources = {
"filesystem",
},
source_selector = {
2024-06-23 20:29:09 +02:00
winbar = false
2024-06-23 19:33:59 +02:00
},
2024-03-02 17:25:11 +01:00
filesystem = {
follow_current_file = {
enabled = true
}
}
}
end
}
}