mirror of
https://github.com/don-philipe/dotfiles.git
synced 2025-11-08 14:47:03 +01:00
10 lines
354 B
Lua
10 lines
354 B
Lua
|
|
-- plugins form the "mini" plugin set https://github.com/echasnovski/mini.nvim?tab=readme-ov-file#modules
|
||
|
|
return {
|
||
|
|
-- auto-insert closing brackets etc.
|
||
|
|
{
|
||
|
|
'echasnovski/mini.pairs',
|
||
|
|
event = 'InsertEnter', -- lazy loading (when entering insert mode)
|
||
|
|
config = true, -- shorthand for calling plugins setup function
|
||
|
|
},
|
||
|
|
}
|