2024-02-26 19:46:46 +00:00
|
|
|
return {
|
|
|
|
{ -- Collection of various small independent plugins/modules
|
|
|
|
'echasnovski/mini.nvim',
|
|
|
|
config = function()
|
|
|
|
-- Better Around/Inside textobjects
|
|
|
|
--
|
|
|
|
-- Examples:
|
2024-03-01 22:11:08 +00:00
|
|
|
-- - va) - [V]isually select [A]round [)]paren
|
2024-02-26 19:46:46 +00:00
|
|
|
-- - yinq - [Y]ank [I]nside [N]ext [']quote
|
|
|
|
-- - ci' - [C]hange [I]nside [']quote
|
|
|
|
require('mini.ai').setup { n_lines = 500 }
|
|
|
|
|
|
|
|
-- 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()
|
|
|
|
|
|
|
|
-- ... and there is more!
|
|
|
|
-- Check out: https://github.com/echasnovski/mini.nvim
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
-- vim: ts=2 sts=2 sw=2 et
|