diff options
| author | Aleksa Vučković <aleksav013@gmail.com> | 2022-01-08 10:53:43 +0100 |
|---|---|---|
| committer | Aleksa Vučković <aleksav013@gmail.com> | 2022-01-08 10:53:43 +0100 |
| commit | d9a4a1e4b070480735b0693b5d0fb6a41e6416d6 (patch) | |
| tree | a4f32caff330fb9a456fcd1d06fdeaa2312db1ba /lua/user/autopairs.lua | |
| parent | 6c1c6ba2f5b45c0c3ba178ee34a9992ce23b7180 (diff) | |
autopairs
Diffstat (limited to 'lua/user/autopairs.lua')
| -rw-r--r-- | lua/user/autopairs.lua | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/lua/user/autopairs.lua b/lua/user/autopairs.lua new file mode 100644 index 0000000..4a3b9a7 --- /dev/null +++ b/lua/user/autopairs.lua @@ -0,0 +1,33 @@ +-- 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 = "" } }) |
