1
0

Update home/.config/lvim/lua/user/plugins.lua

This commit is contained in:
Jeff Lance 2024-12-01 19:45:29 +01:00
parent 3054d3a784
commit f19633159c

View File

@ -54,6 +54,32 @@ M.setup = function()
"nvim-telescope/telescope.nvim"
}
},
{
{
'xvzc/chezmoi.nvim',
dependencies = { 'nvim-lua/plenary.nvim' },
config = function()
require("chezmoi").setup {
-- your configurations
-- default values
{
edit = {
watch = false,
force = false,
},
notification = {
on_open = true,
on_apply = true,
on_watch = false,
},
telescope = {
select = { "<CR>" },
},
}
}
end
},
},
-- cmp addons
{
"tzachar/cmp-tabnine",