This commit is contained in:
2pac 2023-11-05 22:42:28 +01:00
parent 29c77cd7e5
commit f5b59f5173
11 changed files with 363 additions and 406 deletions

View file

@ -0,0 +1,13 @@
return {
"windwp/nvim-autopairs",
dependencies = { 'hrsh7th/nvim-cmp' },
config = function()
require("nvim-autopairs").setup {}
local cmp_autopairs = require('nvim-autopairs.completion.cmp')
local cmp = require('cmp')
cmp.event:on(
'confirm_done',
cmp_autopairs.on_confirm_done()
)
end,
}