From b7b7f1e3d2605072ae38824eee4264f7c533229e Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Mon, 22 May 2023 21:21:34 -0700 Subject: [PATCH] neovim: Disable autopair moveright to prevent closer reuse --- neovim/init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/neovim/init.lua b/neovim/init.lua index c7123e5..02a82a5 100644 --- a/neovim/init.lua +++ b/neovim/init.lua @@ -273,6 +273,7 @@ plugins = { "windwp/nvim-autopairs", opts = { map_cr = true, + enable_moveright = false, enable_check_bracket_line = true, check_ts = true, },