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:
parent
97247ed10f
commit
b124c0a47a
1 changed files with 15 additions and 3 deletions
|
|
@ -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"];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue