Add nvim chezmoi

This commit is contained in:
Lockszmith (@kateryna) 2024-11-25 18:01:31 -05:00
parent b0c5b5be0b
commit 2640e15f47
3 changed files with 45 additions and 0 deletions

11
lazy/lazy.lua Normal file
View file

@ -0,0 +1,11 @@
return {
'andre-kotake/nvim-chezmoi',
lazy = false,
dependencies = {
{ 'nvim-lua/plenary.nvim' },
},
opts = {},
config = function(_, opts)
require('nvim-chezmoi').setup(opts)
end,
}