Test build

This commit is contained in:
augustas.pocius 2024-02-21 22:58:18 +02:00
parent 7af594fd31
commit d4657971dd
3 changed files with 50 additions and 3 deletions

View file

@ -0,0 +1,16 @@
-- Unless you are still migrating, remove the deprecated commands from v1.x
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
vim.keymap.set('n','<leader>n', ':Neotree filesystem reveal right<CR>', {})
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 {}
end,
}