1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
local M = {
"windwp/nvim-autopairs",
commit = "0e065d423f9cf649e1d92443c939a4b5073b6768",
event = "InsertEnter",
dependencies = {
{
"hrsh7th/nvim-cmp",
commit = "cfafe0a1ca8933f7b7968a287d39904156f2c57d",
event = {
"InsertEnter",
"CmdlineEnter",
},
},
},
}
function M.config()
require("nvim-autopairs").setup {
check_ts = true, -- treesitter integration
disable_filetype = { "TelescopePrompt" },
ts_config = {
lua = { "string", "source" },
javascript = { "string", "template_string" },
java = false,
},
fast_wrap = {
map = "<M-e>",
chars = { "{", "[", "(", '"', "'" },
pattern = string.gsub([[ [%'%"%)%>%]%)%}%,] ]], "%s+", ""),
offset = 0, -- Offset from pattern match
end_key = "$",
keys = "qwertyuiopzxcvbnmasdfghjkl",
check_comma = true,
highlight = "PmenuSel",
highlight_grey = "LineNr",
},
}
local cmp_autopairs = require "nvim-autopairs.completion.cmp"
local cmp = require "cmp"
cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done {})
end
return M
|