make autopairs overridable | fix (#1154)
This commit is contained in:
parent
70390c6e8d
commit
fd96f4ddbd
|
@ -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())
|
||||
|
|
Loading…
Reference in New Issue