12 lines
204 B
Lua
12 lines
204 B
Lua
|
return {
|
||
|
'andre-kotake/nvim-chezmoi',
|
||
|
lazy = false,
|
||
|
dependencies = {
|
||
|
{ 'nvim-lua/plenary.nvim' },
|
||
|
},
|
||
|
opts = {},
|
||
|
config = function(_, opts)
|
||
|
require('nvim-chezmoi').setup(opts)
|
||
|
end,
|
||
|
}
|