This commit is contained in:
2pac 2023-11-05 22:42:28 +01:00
parent 29c77cd7e5
commit f5b59f5173
11 changed files with 363 additions and 406 deletions

View file

@ -0,0 +1,17 @@
-- Unless you are still migrating, remove the deprecated commands from v1.x
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",
},
config = function()
require('neo-tree').setup {}
vim.keymap.set('n', '<leader>a', [[:Neotree toggle reveal_force_cwd<cr>]])
end,
}