kickstart-modular.nvim.sz/lua/custom/plugins/nvim-chezmoi.lua

13 lines
231 B
Lua
Raw Normal View History

2024-11-25 23:01:31 +00:00
return {
2024-12-10 17:48:19 +00:00
'andre-kotake/nvim-chezmoi',
lazy = false,
dependencies = {
{ 'nvim-lua/plenary.nvim' },
2024-11-25 23:01:31 +00:00
},
2024-12-10 17:48:19 +00:00
opts = {},
config = function(_, opts)
require('nvim-chezmoi').setup(opts)
end,
2024-11-25 23:01:31 +00:00
}
-- vim: ts=2 sts=2 sw=2 et