feat(init): first init

This commit is contained in:
darwincereska
2025-10-29 15:58:28 -04:00
commit 5a5c81eb60
34 changed files with 713 additions and 0 deletions

15
lua/plugins/ui.lua Normal file
View File

@@ -0,0 +1,15 @@
return {
{
"nvim-neo-tree/neo-tree.nvim", -- NVim File Tree
lazy = false,
priority = 1000,
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons",
"MunifTanjim/nui.nvim",
},
config = function()
require("config.plugin.neo-tree")
end,
},
}