blob: b2322a971672ff09453cebd039751d3f80f66b8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
}
}
|