From ef011f22635f212995be9e652bb833315c7bb4e1 Mon Sep 17 00:00:00 2001 From: rootiest Date: Thu, 29 Aug 2024 14:48:34 -0400 Subject: [PATCH] feat: add mini-move plugin to enhance text movement --- lua/plugins/editor.lua | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lua/plugins/editor.lua b/lua/plugins/editor.lua index 37b675e..a8aac45 100644 --- a/lua/plugins/editor.lua +++ b/lua/plugins/editor.lua @@ -22,6 +22,9 @@ return { { -- Treesitter-context import = "lazyvim.plugins.extras.ui.treesitter-context", }, + { -- Mini.move + import = "lazyvim.plugins.extras.editor.mini-move", + }, { "folke/trouble.nvim", cmd = { "Trouble" }, @@ -43,6 +46,7 @@ return { opts = { modes = { char = { jump_labels = true } }, }, + keys = data.keys.flash, }, { -- Arrow "otavioschwanck/arrow.nvim", @@ -52,15 +56,10 @@ return { "lukas-reineke/indent-blankline.nvim", lazy = true, }, - { -- FoldNav - "domharries/foldnav.nvim", - lazy = true, - keys = data.keys.foldnav, - }, ---@module "neominimap.config.meta" { -- NeoMiniMap "Isrothy/neominimap.nvim", - enabled = true, + version = "*", lazy = false, keys = data.keys.minimap, init = data.types.minimap.init(),