feat: add mini-move plugin to enhance text movement

This commit is contained in:
2024-08-29 14:48:34 -04:00
parent 93e7a1afc4
commit ef011f2263
+5 -6
View File
@@ -22,6 +22,9 @@ return {
{ -- Treesitter-context { -- Treesitter-context
import = "lazyvim.plugins.extras.ui.treesitter-context", import = "lazyvim.plugins.extras.ui.treesitter-context",
}, },
{ -- Mini.move
import = "lazyvim.plugins.extras.editor.mini-move",
},
{ {
"folke/trouble.nvim", "folke/trouble.nvim",
cmd = { "Trouble" }, cmd = { "Trouble" },
@@ -43,6 +46,7 @@ return {
opts = { opts = {
modes = { char = { jump_labels = true } }, modes = { char = { jump_labels = true } },
}, },
keys = data.keys.flash,
}, },
{ -- Arrow { -- Arrow
"otavioschwanck/arrow.nvim", "otavioschwanck/arrow.nvim",
@@ -52,15 +56,10 @@ return {
"lukas-reineke/indent-blankline.nvim", "lukas-reineke/indent-blankline.nvim",
lazy = true, lazy = true,
}, },
{ -- FoldNav
"domharries/foldnav.nvim",
lazy = true,
keys = data.keys.foldnav,
},
---@module "neominimap.config.meta" ---@module "neominimap.config.meta"
{ -- NeoMiniMap { -- NeoMiniMap
"Isrothy/neominimap.nvim", "Isrothy/neominimap.nvim",
enabled = true, version = "*",
lazy = false, lazy = false,
keys = data.keys.minimap, keys = data.keys.minimap,
init = data.types.minimap.init(), init = data.types.minimap.init(),