mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-01 07:21:12 +00:00
22 lines
584 B
Lua
22 lines
584 B
Lua
require("nvim-autopairs").setup({
|
|
check_ts = true,
|
|
disable_filetype = { "TelescopePrompt", "neo-tree" },
|
|
ts_config = {
|
|
lua = { "string", "source" },
|
|
},
|
|
fast_wrap = {
|
|
map = "<M-e>",
|
|
chars = { "{", "[", "(", '"', "'" },
|
|
pattern = string.gsub([[ [%'%"%)%>%]%)%}%,] ]], "%s+", ""),
|
|
offset = 0,
|
|
end_key = "$",
|
|
keys = "qwertyuiopzxcvbnmasdfghjkl",
|
|
check_comma = true,
|
|
highlight = "PmenuSel",
|
|
highlight_grey = "LineNr",
|
|
},
|
|
})
|
|
|
|
local cmp_autopairs = require("nvim-autopairs.completion.cmp")
|
|
require("cmp").event:on("confirm_done", cmp_autopairs.on_confirm_done({}))
|