From 2c57a134e3421b402117f77dc2edf0e7bf6b9e81 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Tue, 3 Jan 2023 01:48:40 +0100 Subject: [PATCH] fixed some keybindings overwritten by which key --- lua/plugins/which-key.lua | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lua/plugins/which-key.lua b/lua/plugins/which-key.lua index 72c06d8..3c4fc71 100644 --- a/lua/plugins/which-key.lua +++ b/lua/plugins/which-key.lua @@ -1,4 +1,12 @@ return { 'folke/which-key.nvim', - config = true + config = { + plugins = { + marks = false, + registers = false, + presets = { + operators = false + } + } + } }