mirror of
https://github.com/tomru/nvim.git
synced 2026-03-03 14:37:15 +01:00
21 lines
476 B
Lua
21 lines
476 B
Lua
vim.cmd [[ let g:neo_tree_remove_legacy_commands = 1 ]]
|
|
|
|
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',
|
|
},
|
|
opts = {
|
|
filesystem = {
|
|
follow_current_file = { enabled = true },
|
|
bind_to_cwd = false,
|
|
},
|
|
},
|
|
keys = {
|
|
{ '<leader>e', '<cmd>:Neotree toggle<cr>', desc = 'NeoTree' },
|
|
},
|
|
}
|