first working bunch of plugins

This commit is contained in:
Plamen Kutinchev 2024-03-25 21:25:48 +02:00
parent dbba54cfd8
commit eb1c7997a4
12 changed files with 223 additions and 0 deletions

View file

@ -0,0 +1,15 @@
return {
{
"nvim-neo-tree/neo-tree.nvim",
branch = "v3.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons",
"MunifTanjim/nui.nvim",
},
config = function()
vim.keymap.set("n", "<C-n>", ":Neotree filesystem reveal left<CR>", {})
vim.keymap.set("n", "<leader>bf", ":Neotree buffers reveal float<CR>", {})
end,
}
}