aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins/autopairs.lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2023-03-04 10:36:42 +0200
committersrdusr <trevorgray@srdusr.com>2023-03-04 10:36:42 +0200
commit35dcc1b1cc3bb633007d771f5afcf040796c2f7e (patch)
tree4490a11d9c3981d59f61b94ab82d0badda2c29a3 /lua/plugins/autopairs.lua
parent22bf56135ec434fd6bfcac1a1ce76a98ae462a71 (diff)
downloaddotfiles-35dcc1b1cc3bb633007d771f5afcf040796c2f7e.tar.gz
dotfiles-35dcc1b1cc3bb633007d771f5afcf040796c2f7e.zip
Fixed spelling @ enable_moveright
Diffstat (limited to 'lua/plugins/autopairs.lua')
-rw-r--r--lua/plugins/autopairs.lua5
1 files changed, 2 insertions, 3 deletions
diff --git a/lua/plugins/autopairs.lua b/lua/plugins/autopairs.lua
index fc39d2e..90c6d35 100644
--- a/lua/plugins/autopairs.lua
+++ b/lua/plugins/autopairs.lua
@@ -1,4 +1,3 @@
--- Setup nvim-cmp.
local status_ok, npairs = pcall(require, "nvim-autopairs")
if not status_ok then
return
@@ -18,9 +17,9 @@ npairs.setup {
disable_filetype = { "TelescopePrompt", "spectre_panel" },
disable_in_macro = true,
disable_in_visualblock = true,
- enalbe_moveright = true,
+ enable_moveright = true,
enable_afterquote = true, -- add bracket pairs after quote
- enable_check_bracket_line = true, --- check bracket in same line
+ enable_check_bracket_line = false, --- check bracket in same line
enable_bracket_in_quote = true, --
break_undo = true, -- switch for basic rule break undo sequence
fast_wrap = {