diff --git a/init.lua b/init.lua index b98ffc61..26e5d033 100644 --- a/init.lua +++ b/init.lua @@ -912,12 +912,19 @@ require('lazy').setup({ -- - ci' - [C]hange [I]nside [']quote require('mini.ai').setup { n_lines = 500 } + -- Warning: This plugin sets default keymaps starting with `s`, which override Neovim's native `s`. + -- It causes a short delay when pressing `s` due to keymap ambiguity. + -- To keep Neovim's original `s` behavior, consider disabling this plugin by default, + -- or customize the mappings to use different keys. + -- + -- Use `:help map-ambiguous` to see more information. + -- -- Add/delete/replace surroundings (brackets, quotes, etc.) -- -- - saiw) - [S]urround [A]dd [I]nner [W]ord [)]Paren -- - sd' - [S]urround [D]elete [']quotes -- - sr)' - [S]urround [R]eplace [)] ['] - require('mini.surround').setup() + -- require('mini.surround').setup() -- Simple and easy statusline. -- You could remove this setup call if you don't like it,