From 849489afd6d47c1933c6594ad75e680aebc06090 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Sun, 16 Jun 2024 17:42:48 +0200 Subject: [PATCH] nvim: Move mini.bracketed comment to k suffix Moved the mini bracketed comment following to use the ]k [k suffix. I am not sure if this is completely taking since every now and again it seems to still be overriding my own configured mapping. --- nvim/.config/nvim/lua/plugins/core.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nvim/.config/nvim/lua/plugins/core.lua b/nvim/.config/nvim/lua/plugins/core.lua index 5544ca8..b1dd640 100644 --- a/nvim/.config/nvim/lua/plugins/core.lua +++ b/nvim/.config/nvim/lua/plugins/core.lua @@ -119,17 +119,17 @@ return { require("mini.bracketed").setup({ { buffer = { suffix = "b", options = {} }, - comment = { suffix = "c", options = {} }, - conflict = { suffix = "", options = {} }, + comment = { suffix = "k", options = {} }, + conflict = { suffix = "" }, -- disable to use git-conflict instead diagnostic = { suffix = "d", options = {} }, - file = { suffix = "f", options = {} }, - indent = { suffix = "", options = {} }, -- disable since we use indentscope above + file = { suffix = "", options = {} }, + indent = { suffix = "" }, -- disable since we use indentscope above jump = { suffix = "j", options = {} }, location = { suffix = "l", options = {} }, oldfile = { suffix = "o", options = {} }, quickfix = { suffix = "q", options = {} }, treesitter = { suffix = "t", options = {} }, - undo = { suffix = "", options = {} }, -- disable since I don't need it + undo = { suffix = "" }, -- disable since I don't need it window = { suffix = "w", options = {} }, yank = { suffix = "y", options = {} }, },