diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-22 16:44:32 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-22 16:44:32 +0100 |
commit | 7a60f2d61c44cdba85cbcf10b561b0401e9b105a (patch) | |
tree | 0f92b1e21f84c907bcd1c373625960d2834dc326 /lua/config/autopairs.lua | |
parent | c22beb43a4526372abbd6c3dab48051e6b4e2a20 (diff) |
fix: format with stylua config
Diffstat (limited to 'lua/config/autopairs.lua')
-rw-r--r-- | lua/config/autopairs.lua | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/lua/config/autopairs.lua b/lua/config/autopairs.lua index 027135b..e218aff 100644 --- a/lua/config/autopairs.lua +++ b/lua/config/autopairs.lua @@ -2,33 +2,33 @@ local status_ok, npairs = pcall(require, "nvim-autopairs") if not status_ok then - return + 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", - }, -}) +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_autopairs = require "nvim-autopairs.completion.cmp" local cmp_status_ok, cmp = pcall(require, "cmp") if not cmp_status_ok then - return + return end -cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done({ map_char = { tex = "" } })) +cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done { map_char = { tex = "" } }) |