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

31 lines
786 B
Lua
Raw Normal View History

-- Neo-tree is a Neovim plugin to browse the file system
-- https://github.com/nvim-neo-tree/neo-tree.nvim
return {
'nvim-neo-tree/neo-tree.nvim',
version = '*',
dependencies = {
'nvim-lua/plenary.nvim',
'nvim-tree/nvim-web-devicons', -- not strictly required, but recommended
'MunifTanjim/nui.nvim',
},
cmd = 'Neotree',
keys = {
2025-04-04 20:51:30 -03:00
{ '\\', ':Neotree position=float<CR>', desc = 'NeoTree reveal in float mode', silent = true },
{ '<leader>nds', ':Neotree document_symbols position=float<CR>', desc = 'NeoTree document symbols', silent = true },
},
opts = {
2025-04-04 20:51:30 -03:00
sources = {
'filesystem',
'document_symbols',
},
filesystem = {
window = {
mappings = {
['\\'] = 'close_window',
},
},
},
},
}