18 lines
522 B
Lua
18 lines
522 B
Lua
local status_ok, npairs = pcall(require, "nvim-autopairs")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
npairs.setup {
|
|
disable_filetype = { "TelescopePrompt", "spectre_panel" },
|
|
ignored_next_char = "[%w%.*]", -- don't place autopairs when cursor sits infront of any character.
|
|
}
|
|
|
|
local cmp_autopairs = require "nvim-autopairs.completion.cmp"
|
|
local cmp_status_ok, cmp = pcall(require, "cmp")
|
|
if not cmp_status_ok then
|
|
return
|
|
end
|
|
|
|
cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done { map_char = { tex = "" } })
|