Initial Commit

This commit is contained in:
Falon Clark
2026-03-19 13:09:21 -04:00
commit a7f8df9e50
24 changed files with 537 additions and 0 deletions

11
lua/plugins/chezmoi.lua Normal file
View File

@@ -0,0 +1,11 @@
return {
"xvzc/chezmoi.nvim",
dependencies = { "nvim-lua/plenary.nvim" },
config = function()
require("chezmoi").setup({
edit = {
watch = true,
}
})
end,
}