diff options
| author | srdusr <trevorgray@srdusr.com> | 2022-10-19 23:57:09 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2022-10-19 23:57:09 +0200 |
| commit | 97be95d96b96c42dab64dff7018a89baa22384ee (patch) | |
| tree | efbed9d1a80e20ebe4249ecb4ffc2027430b5b11 /lua/plugins/autopairs.lua | |
| parent | 27a7c25f0727b373b5d0e4693d5bb2cb4c9c3a88 (diff) | |
| download | dotfiles-97be95d96b96c42dab64dff7018a89baa22384ee.tar.gz dotfiles-97be95d96b96c42dab64dff7018a89baa22384ee.zip | |
Made Sourcing lua config easier
Diffstat (limited to 'lua/plugins/autopairs.lua')
| -rw-r--r-- | lua/plugins/autopairs.lua | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/lua/plugins/autopairs.lua b/lua/plugins/autopairs.lua deleted file mode 100644 index 577e571..0000000 --- a/lua/plugins/autopairs.lua +++ /dev/null @@ -1,33 +0,0 @@ --- Setup nvim-cmp. -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 = "" } }) |
