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 },