26 lines
613 B
Lua
26 lines
613 B
Lua
M = {
|
|
check_ts = true,
|
|
ts_config = {
|
|
lua = { "string", "source" },
|
|
javascript = { "string", "template_string" },
|
|
},
|
|
fast_wrap = {
|
|
map = "<M-e>",
|
|
chars = { "{", "[", "(", '"', "'" },
|
|
pattern = [=[[%'%"%)%>%]%)%}%,]]=],
|
|
end_key = "$",
|
|
keys = "qwertyuiopzxcvbnmasdfghjkl",
|
|
check_comma = true,
|
|
highlight = "Search",
|
|
highlight_grey = "Comment",
|
|
},
|
|
}
|
|
|
|
local cmp_autopairs = require("nvim-autopairs.completion.cmp")
|
|
local ok, cmp = pcall(require, "cmp")
|
|
if ok then
|
|
cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done({ map_char = { tex = "" } }))
|
|
end
|
|
|
|
return M
|