feat: Initial nvim configs

This commit is contained in:
2026-08-18 21:47:15 +01:00
commit 6bc5875bad
12 changed files with 124 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
return {
{
"nvim-tree/nvim-tree.lua",
dependencies = { "nvim-tree/nvim-web-devicons" },
config = function()
require("nvim-tree").setup({
filters = {
dotfiles = true,
},
})
end
},
}