Set initial configuration

This commit is contained in:
Eduardo Ellery 2024-12-15 15:17:14 +01:00
parent de44f49101
commit 44d3a98cb3
8 changed files with 1786 additions and 718 deletions

13
lua/plugins/neo-tree.lua Normal file
View file

@ -0,0 +1,13 @@
return {
"nvim-neo-tree/neo-tree.nvim",
branch = "v3.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
-- "3rd/image.nvim", -- Optional image support in preview window: See `# Preview Mode` for more information
},
config = function()
vim.keymap.set('n', '<leader>n', ':Neotree filesystem reveal left<CR>', {})
end
}