Fixed leap coloring
This commit is contained in:
parent
f069f1b01a
commit
357cc442ed
|
@ -13,9 +13,6 @@ local options = function(local_vim)
|
||||||
-- Currently buggy, needs an edit to trigger
|
-- Currently buggy, needs an edit to trigger
|
||||||
local_vim.g.inlay_hints_enabled = true
|
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
|
return local_vim
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -103,6 +103,7 @@ return {{
|
||||||
-- @lsp.modtype.* for types with modifiers
|
-- @lsp.modtype.* for types with modifiers
|
||||||
-- @lsp.type.* for token types
|
-- @lsp.type.* for token types
|
||||||
return {
|
return {
|
||||||
|
LeapBackdrop = { fg = C.overlay0 },
|
||||||
Error = { fg = C.red, italic = true, underline = true },
|
Error = { fg = C.red, italic = true, underline = true },
|
||||||
["@lsp.type.interface"] = { fg = C.yellow },
|
["@lsp.type.interface"] = { fg = C.yellow },
|
||||||
["@function.builtin"] = { fg = C.blue },
|
["@function.builtin"] = { fg = C.blue },
|
||||||
|
|
Loading…
Reference in New Issue