diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-06 23:47:53 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-06 23:47:53 +0200 |
commit | e1c5a423a6e8abec507d89863903be869762a55e (patch) | |
tree | 925b268e08ffadd86f00611df636c54da45e0299 /lua/config/autopairs.lua | |
parent | 9404b0daa8733fb830b98eb13503c7f1bcbb915b (diff) |
chore(lua): nuke lua files
Diffstat (limited to 'lua/config/autopairs.lua')
-rw-r--r-- | lua/config/autopairs.lua | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/lua/config/autopairs.lua b/lua/config/autopairs.lua deleted file mode 100644 index e218aff..0000000 --- a/lua/config/autopairs.lua +++ /dev/null @@ -1,34 +0,0 @@ --- Autopair for brackets and quote symbols. - -local status_ok, npairs = pcall(require, "nvim-autopairs") -if not status_ok then - return -end - -npairs.setup { - 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", - }, -} - -local cmp_autopairs = 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 = "" } }) |