Initial commit

This commit is contained in:
Paul Fey 2025-02-25 12:38:50 +01:00
commit a33ed53635
15 changed files with 343 additions and 0 deletions

13
lua/plugins/neotree.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", opts = {}}, -- Optional image support in preview window: See `# Preview Mode` for more information
},
config = function()
vim.keymap.set('n', '<C-n>', ':Neotree filesystem reveal left<CR>', {})
end
}