changed some mini plugins
This commit is contained in:
parent
f5532193c8
commit
5b3685e857
1 changed files with 33 additions and 3 deletions
|
@ -1,22 +1,52 @@
|
||||||
return {
|
return {
|
||||||
|
-- INFO:
|
||||||
-- mini-ai for a and i selections or other --> vin" for visual in next ""
|
-- mini-ai for a and i selections or other --> vin" for visual in next ""
|
||||||
{
|
{
|
||||||
"echasnovski/mini.ai",
|
"echasnovski/mini.ai",
|
||||||
version = "false",
|
version = "*",
|
||||||
opts = {},
|
opts = {},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
-- TIP:
|
||||||
-- ─< mini-surround for surrounding words or lines with "" or () or '' etc.. >──────────
|
-- ─< mini-surround for surrounding words or lines with "" or () or '' etc.. >──────────
|
||||||
{
|
{
|
||||||
"echasnovski/mini.surround",
|
"echasnovski/mini.surround",
|
||||||
version = "false",
|
version = "*",
|
||||||
opts = {},
|
opts = {},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
-- Move any selection in any direction
|
||||||
|
{
|
||||||
|
"echasnovski/mini.move",
|
||||||
|
version = "*",
|
||||||
|
opts = {
|
||||||
|
-- Module mappings. Use `''` (empty string) to disable one.
|
||||||
|
mappings = {
|
||||||
|
-- Move visual selection in Visual mode. Defaults are Alt (Meta) + hjkl.
|
||||||
|
left = "<S-Tab>",
|
||||||
|
right = "<Tab>",
|
||||||
|
down = "<S-j>",
|
||||||
|
up = "<S-k>",
|
||||||
|
|
||||||
|
line_left = "<S-h>",
|
||||||
|
line_right = "<S-l>",
|
||||||
|
line_down = "<S-j>",
|
||||||
|
line_up = "<S-k>",
|
||||||
|
-- Move current line in Normal mode
|
||||||
|
},
|
||||||
|
|
||||||
|
-- Options which control moving behavior
|
||||||
|
options = {
|
||||||
|
-- Automatically reindent selection during linewise vertical move
|
||||||
|
reindent_linewise = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
-- ─< miniIcons >───────────────────────────────────────────────────────────────────────
|
-- ─< miniIcons >───────────────────────────────────────────────────────────────────────
|
||||||
{
|
{
|
||||||
"echasnovski/mini.icons",
|
"echasnovski/mini.icons",
|
||||||
version = "false",
|
version = "*",
|
||||||
opts = {},
|
opts = {},
|
||||||
lazy = true,
|
lazy = true,
|
||||||
specs = {
|
specs = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue