mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
35 lines
928 B
Lua
35 lines
928 B
Lua
-- nvim-autopairs – https://github.com/windwp/nvim-autopairs
|
||
local status_ok, autopairs = pcall(require, "nvim-autopairs")
|
||
if not status_ok then
|
||
return
|
||
end
|
||
|
||
autopairs.setup({
|
||
check_ts = true,
|
||
ts_config = {
|
||
lua = { "string", "source" },
|
||
javascript = { "string", "template_string" },
|
||
java = false,
|
||
},
|
||
disable_filetype = { "TelescopePrompt", "spectre_panel" },
|
||
fast_wrap = {
|
||
map = "<C-l>",
|
||
chars = { "{", "[", "(", '"', "'" },
|
||
pattern = string.gsub([[ [%'%"%)%>%]%)%}%,] ]], "%s+", ""),
|
||
offset = 0, -- Offset from pattern match
|
||
end_key = "$",
|
||
keys = "qwertzuiopyxcvbnmasdfghjkl",
|
||
check_comma = true,
|
||
highlight = "PmenuSel",
|
||
highlight_grey = "LineNr",
|
||
},
|
||
})
|
||
|
||
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 = "" } }))
|