From c29ad60bee974c6b6c5ec88e452bf01c4dab49ae Mon Sep 17 00:00:00 2001 From: "markus.dieckmann" Date: Mon, 13 Oct 2025 11:43:52 +0200 Subject: [PATCH] mini namespace --- nvim/lua/plugins/mini.lua | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/nvim/lua/plugins/mini.lua b/nvim/lua/plugins/mini.lua index 84208be..3554277 100644 --- a/nvim/lua/plugins/mini.lua +++ b/nvim/lua/plugins/mini.lua @@ -1,20 +1,20 @@ return { - "echasnovski/mini.nvim", + "nvim-mini/mini.nvim", version = "*", config = function() require("mini.pairs").setup({}) require("mini.surround").setup({ mappings = { - add = "gza", -- Add surrounding in Normal and Visual modes - delete = "gzd", -- Delete surrounding - find = "gzf", -- Find surrounding (to the right) - find_left = "gzF", -- Find surrounding (to the left) - highlight = "gzh", -- Highlight surrounding - replace = "gzr", -- Replace surrounding + add = "gza", -- Add surrounding in Normal and Visual modes + delete = "gzd", -- Delete surrounding + find = "gzf", -- Find surrounding (to the right) + find_left = "gzF", -- Find surrounding (to the left) + highlight = "gzh", -- Highlight surrounding + replace = "gzr", -- Replace surrounding update_n_lines = "gzn", -- Update `n_lines` - suffix_last = "l", -- Suffix to search with "prev" method - suffix_next = "n", -- Suffix to search with "next" method + suffix_last = "l", -- Suffix to search with "prev" method + suffix_next = "n", -- Suffix to search with "next" method }, }) end,