15 lines
851 B
Lua
15 lines
851 B
Lua
require("mini.surround").setup({}) --surround strings with objects in one go (parens etc.)
|
|
require("mini.pairs").setup({}) --put down parens etc in pairs
|
|
require("mini.ai").setup({}) --selection with textobjects, such as "indside quotes, parens etc"
|
|
require("mini.bracketed").setup({}) -- move to textobjects with brackets
|
|
require("mini.jump2d").setup({}) -- jump to any point with Enter+ 2 letters in 2d matrix
|
|
require("mini.files").setup({}) -- floating file manager in vim editor style
|
|
require("mini.comment").setup({}) -- block comments etc
|
|
|
|
-- sugar ↓↓↓↓↓↓
|
|
require("mini.indentscope").setup({}) -- show indent scope
|
|
|
|
-- potentially interesting
|
|
--require("mini.align").setup({}) -- split lines in multiple sections, align these to rules, look into it more
|
|
--require("mini.git").setup({}) -- git shortcuts, but collisions with gitsigns
|