mirror of https://github.com/sgoudham/dotfiles.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
430 B
Lua
17 lines
430 B
Lua
2 years ago
|
return {
|
||
|
{
|
||
|
"windwp/nvim-autopairs",
|
||
|
config = function()
|
||
|
require("nvim-autopairs").setup({
|
||
|
disable_in_macro = true,
|
||
|
})
|
||
|
local cmp_autopairs = require('nvim-autopairs.completion.cmp')
|
||
|
local cmp = require('cmp')
|
||
|
cmp.event:on(
|
||
|
'confirm_done',
|
||
|
cmp_autopairs.on_confirm_done()
|
||
|
)
|
||
|
end,
|
||
|
},
|
||
|
}
|