1
0
Fork 0

Remove vim and add nvim config

This commit is contained in:
coderkun 2024-10-13 17:32:15 +02:00
commit e06ce1a49a
26 changed files with 665 additions and 66 deletions

View file

@ -0,0 +1,17 @@
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()
require("neo-tree").setup({
window = {
position = "left",
width = 50,
},
})
end
}