From 61928834a3e01ccb474becc8a0499be2c2c5a0db Mon Sep 17 00:00:00 2001 From: rootiest Date: Thu, 18 Jul 2024 11:48:41 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Which-key=20update?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove 'modes' option (deprecated) - Add slight transparancy to window --- lua/plugins/editor.lua | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/lua/plugins/editor.lua b/lua/plugins/editor.lua index 3350524..ab59791 100644 --- a/lua/plugins/editor.lua +++ b/lua/plugins/editor.lua @@ -12,20 +12,9 @@ return { "folke/which-key.nvim", opts = { preset = "modern", - modes = { - n = true, -- Normal mode - i = true, -- Insert mode - x = true, -- Visual mode - s = true, -- Select mode - o = true, -- Operator pending mode - t = true, -- Terminal mode - c = true, -- Command mode - -- Start hidden and wait for a key to be pressed before showing the popup - -- Only used by enabled xo mapping modes. - -- Set to false to show the popup immediately (after the delay) - defer = { - [""] = false, - V = false, + win = { + wo = { + winblend = 10, }, }, },