-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathautopairs.lua
More file actions
41 lines (39 loc) · 1.17 KB
/
Copy pathautopairs.lua
File metadata and controls
41 lines (39 loc) · 1.17 KB
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
local M = {
"windwp/nvim-autopairs",
event = "InsertEnter",
}
M.config = function()
require("nvim-autopairs").setup {
map_char = {
all = "(",
tex = "{",
},
enable_check_bracket_line = false,
check_ts = true,
ts_config = {
lua = { "string", "source" },
javascript = { "string", "template_string" },
java = false,
},
disable_filetype = { "TelescopePrompt", "spectre_panel" },
ignored_next_char = string.gsub([[ [%w%%%'%[%"%.] ]], "%s+", ""),
enable_moveright = true,
disable_in_macro = false,
enable_afterquote = true,
map_bs = true,
map_c_w = false,
disable_in_visualblock = 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 = "Search",
highlight_grey = "Comment",
},
}
end
return M