diff options
| author | srdusr <trevorgray@srdusr.com> | 2022-12-16 23:38:53 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2022-12-16 23:38:53 +0200 |
| commit | 8f4eae2782704484b498129a0a7d9044a4d73fbb (patch) | |
| tree | e5980ba3f04aa07a32aca2361bfa65b32353684a /config/nvim/lua/plugins/autopairs.lua | |
| parent | dc714e9c0858b309f40f50be3254e42ee2b30b0c (diff) | |
| parent | 52ed18452c16ed012e646df059859cb7925c1d8d (diff) | |
| download | dotfiles-8f4eae2782704484b498129a0a7d9044a4d73fbb.tar.gz dotfiles-8f4eae2782704484b498129a0a7d9044a4d73fbb.zip | |
Merge commit '240510927f7694d19f8daa67d675d1685c199442' as 'config/nvim'
Diffstat (limited to 'config/nvim/lua/plugins/autopairs.lua')
| -rw-r--r-- | config/nvim/lua/plugins/autopairs.lua | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/config/nvim/lua/plugins/autopairs.lua b/config/nvim/lua/plugins/autopairs.lua new file mode 100644 index 0000000..fc39d2e --- /dev/null +++ b/config/nvim/lua/plugins/autopairs.lua @@ -0,0 +1,43 @@ +-- 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, + }, + map = "<M-e>", + pairs_map = { +['<'] = '>', +}, + disable_filetype = { "TelescopePrompt", "spectre_panel" }, + disable_in_macro = true, + disable_in_visualblock = true, + enalbe_moveright = true, + enable_afterquote = true, -- add bracket pairs after quote + enable_check_bracket_line = true, --- check bracket in same line + enable_bracket_in_quote = true, -- + break_undo = true, -- switch for basic rule break undo sequence + fast_wrap = { + 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 = "" } }) |
