From 749c89da0c4c6feae9d2f326fa5418e0d5f8ddb5 Mon Sep 17 00:00:00 2001 From: Henrik Bakken Date: Fri, 20 Mar 2026 01:09:49 +0100 Subject: [PATCH] nvim mini.bracketed --- CONFIG/nvim/init.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/CONFIG/nvim/init.lua b/CONFIG/nvim/init.lua index f84cb62..8fb40b2 100644 --- a/CONFIG/nvim/init.lua +++ b/CONFIG/nvim/init.lua @@ -1218,6 +1218,25 @@ local function makespecs_mini() opts = { options = { basic = true, extra_ui = true }, mappings = { move_with_alt = true } }, }, { "echasnovski/mini.icons", opts = {} }, + { + "echasnovski/mini.bracketed", + version = false, + event = "VeryLazy", + opts = { + -- Disabled because your custom LSP mappings (]e, ]w) are better! + diagnostic = { suffix = "", options = {} }, + + -- These are the heavy hitters. They map [ and ] automatically. + buffer = { suffix = "b", options = {} }, -- ]b / [b + quickfix = { suffix = "q", options = {} }, -- ]q / [q + location = { suffix = "l", options = {} }, -- ]l / [l + yank = { suffix = "y", options = {} }, -- ]y / [y (cycle pasted text) + indent = { suffix = "i", options = {} }, -- ]i / [i (match indent level) + file = { suffix = "f", options = {} }, -- ]f / [f (next file on disk) + window = { suffix = "w", options = {} }, -- ]w / [w (cycle windows) + undo = { suffix = "u", options = {} }, -- ]u / [u (traverse undo tree) + }, + }, { "echasnovski/mini.surround", version = false,