feat(neovim): Add nvim config files

This commit is contained in:
2024-10-29 09:15:26 -05:00
parent a7c36de720
commit 0d8daff023
10 changed files with 157 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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 toggle<CR>", {})
end,
}