nvim lazy plugin management part 1
This commit is contained in:
34
.config/nvim/lua/user/plugins/autopairs.lua
Normal file
34
.config/nvim/lua/user/plugins/autopairs.lua
Normal file
@ -0,0 +1,34 @@
|
||||
return {
|
||||
"windwp/nvim-autopairs",
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
check_ts = true,
|
||||
ts_config = {
|
||||
lua = { "string", "source" },
|
||||
javascript = { "string", "template_string" },
|
||||
java = false,
|
||||
},
|
||||
disable_filetype = { "TelescopePrompt", "spectre_panel" },
|
||||
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",
|
||||
},
|
||||
},
|
||||
config = function ()
|
||||
require("nvim-autopairs").setup()
|
||||
-- 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 = "" } })
|
||||
end
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user