patch: update colors and theme (#12)

Fix Navic lualine text color so it better matches the overall theme.
Also changed the indentscope outline color to rosewater and enabled some
extra catppuccin theming settings.
This commit is contained in:
Roel de Cort 2024-07-07 00:59:55 +02:00 committed by GitHub
parent 97247ed10f
commit b124c0a47a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,9 +8,10 @@
dark = "mocha";
};
custom_highlights = ''
function(numbercolor)
function(highlights)
return {
CursorLineNr = { fg = numbercolor.peach, style = {} },
CursorLineNr = { fg = highlights.peach, style = {} },
NavicText = { fg = highlights.text },
}
end
'';
@ -27,6 +28,7 @@
which_key = true;
illuminate = {
enabled = true;
lsp = true;
};
navic = {
enabled = true;
@ -35,12 +37,22 @@
treesitter = true;
telescope.enabled = true;
indent_blankline.enabled = true;
mini.enabled = true;
mini = {
enabled = true;
indentscope_color = "rosewater";
};
native_lsp = {
enabled = true;
inlay_hints = {
background = true;
};
virtual_text = {
errors = ["italic"];
hints = ["italic"];
information = ["italic"];
warnings = ["italic"];
ok = ["italic"];
};
underlines = {
errors = ["underline"];
hints = ["underline"];