From 357cc442ed36a20907ef924eb4873f2db1c34f5e Mon Sep 17 00:00:00 2001 From: Natty Date: Sat, 10 Feb 2024 16:46:57 +0100 Subject: [PATCH] Fixed leap coloring --- options.lua | 3 --- plugins.lua | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/options.lua b/options.lua index 7b94200..12acf4b 100644 --- a/options.lua +++ b/options.lua @@ -13,9 +13,6 @@ local options = function(local_vim) -- Currently buggy, needs an edit to trigger local_vim.g.inlay_hints_enabled = true - -- Grey out the search area for leap.nvim - vim.api.nvim_set_hl(0, 'LeapBackdrop', { fg = "#888888" }) - return local_vim end diff --git a/plugins.lua b/plugins.lua index bdba95f..da23540 100644 --- a/plugins.lua +++ b/plugins.lua @@ -103,6 +103,7 @@ return {{ -- @lsp.modtype.* for types with modifiers -- @lsp.type.* for token types return { + LeapBackdrop = { fg = C.overlay0 }, Error = { fg = C.red, italic = true, underline = true }, ["@lsp.type.interface"] = { fg = C.yellow }, ["@function.builtin"] = { fg = C.blue },