Replies: 1 comment 1 reply
-
hi @raknos13 return {
"catppuccin/nvim",
lazy = true,
name = "catppuccin",
opts = {},
config = function()
require("catppuccin").setup({
term_colors = true,
transparent_background = true,
custom_highlights = function(colors)
local u = require("catppuccin.utils.colors")
return {
CursorLineNr = { bg = u.blend(colors.overlay0, colors.base, 0.75), style = { "bold" } },
CursorLine = { bg = u.blend(colors.overlay0, colors.base, 0.45) },
LspReferenceText = { bg = colors.surface2 },
LspReferenceWrite = { bg = colors.surface2 },
LspReferenceRead = { bg = colors.surface2 },
}
end,
})
end,
}
hope this helps! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I tried the following fix in #448 by adding
custom_highlights
rule, but it didn't make any noticeable difference.Originally posted by @mrtnvgr in #448 (comment)
How can I make the cursorline more visible?
Beta Was this translation helpful? Give feedback.
All reactions