make autopairs overridable | fix (#1154)

This commit is contained in:
siduck 2022-05-30 12:16:18 +05:30
parent 70390c6e8d
commit fd96f4ddbd
1 changed files with 4 additions and 1 deletions

View File

@ -10,11 +10,14 @@ M.autopairs = function()
return
end
autopairs.setup {
local options = {
fast_wrap = {},
disable_filetype = { "TelescopePrompt", "vim" },
}
options = load_override(options, "windwp/nvim-autopairs")
autopairs.setup(options)
local cmp_autopairs = require "nvim-autopairs.completion.cmp"
cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done())