Dots Updated

* Adds Neovim config
This commit is contained in:
2024-07-05 04:06:58 +05:30
parent 51381df5cf
commit 45f8d6233b
10 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
return {
{
"nvim-neo-tree/neo-tree.nvim",
branch = "v1.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim"
},
config = function()
vim.keymap.set('n','<C-n>', ':Neotree toggle<CR>', {})
end
}
}