15 lines
335 B
Lua
15 lines
335 B
Lua
return {
|
|
{
|
|
"nvim-neo-tree/neo-tree.nvim",
|
|
branch = "v1.x",
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
|
|
"MunifTanjim/nui.nvim"
|
|
},
|
|
config = function()
|
|
vim.keymap.set('n','<C-n>', ':Neotree toggle<CR>', {})
|
|
end
|
|
}
|
|
}
|