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.
This commit is contained in:
Marty Oehme 2024-06-16 17:42:48 +02:00
parent 9dcd2f3d48
commit 849489afd6
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A

View file

@ -119,17 +119,17 @@ return {
require("mini.bracketed").setup({ require("mini.bracketed").setup({
{ {
buffer = { suffix = "b", options = {} }, buffer = { suffix = "b", options = {} },
comment = { suffix = "c", options = {} }, comment = { suffix = "k", options = {} },
conflict = { suffix = "", options = {} }, conflict = { suffix = "" }, -- disable to use git-conflict instead
diagnostic = { suffix = "d", options = {} }, diagnostic = { suffix = "d", options = {} },
file = { suffix = "f", options = {} }, file = { suffix = "", options = {} },
indent = { suffix = "", options = {} }, -- disable since we use indentscope above indent = { suffix = "" }, -- disable since we use indentscope above
jump = { suffix = "j", options = {} }, jump = { suffix = "j", options = {} },
location = { suffix = "l", options = {} }, location = { suffix = "l", options = {} },
oldfile = { suffix = "o", options = {} }, oldfile = { suffix = "o", options = {} },
quickfix = { suffix = "q", options = {} }, quickfix = { suffix = "q", options = {} },
treesitter = { suffix = "t", 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 = {} }, window = { suffix = "w", options = {} },
yank = { suffix = "y", options = {} }, yank = { suffix = "y", options = {} },
}, },