summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta/highlights.lua
diff options
context:
space:
mode:
authoraktersnurra <gustaf.rydholm@gmail.com>2022-10-16 23:50:22 +0200
committerGitHub <noreply@github.com>2022-10-16 23:50:22 +0200
commitbde7441ddaf0aa478687dd6bbf2dfda4e3034b1d (patch)
treefbe7830b753ace2c7f4e0268b4130f3e878b0f1d /lua/no-clown-fiesta/highlights.lua
parentc23306b3e56cfc7be62c77f0b7eb8190f76019b5 (diff)
Fix treesitter dropping TS group support (#8)
* Rename treesitter hl groups * Update highlight color * Update lsp icons * Update icon colors * Revert "Update icon colors" This reverts commit 3046987e0459695576ae8520b37b9db8029d15eb. * Revert "Update lsp icons" This reverts commit 03968e6a0b4dda08043cc442f2bb8705921eac34. * Update diagnostics signs colors
Diffstat (limited to 'lua/no-clown-fiesta/highlights.lua')
-rw-r--r--lua/no-clown-fiesta/highlights.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/no-clown-fiesta/highlights.lua b/lua/no-clown-fiesta/highlights.lua
index f435511..5ebbc45 100644
--- a/lua/no-clown-fiesta/highlights.lua
+++ b/lua/no-clown-fiesta/highlights.lua
@@ -68,9 +68,9 @@ function M.highlight(palette, opts)
Boolean = { fg = palette.red },
Float = { fg = palette.red },
Identifier = { fg = palette.white },
- Function = { fg = palette.gray_blue, style = opts.functions },
+ Function = { fg = palette.cyan, style = opts.functions },
Operator = { fg = palette.white },
- Type = { fg = palette.white },
+ Type = { fg = palette.white, style = opts.type },
StorageClass = { fg = palette.gray_blue },
Structure = { fg = palette.gray_blue },
Typedef = { fg = palette.white },
@@ -89,7 +89,7 @@ function M.highlight(palette, opts)
SpecialChar = { fg = palette.medium_gray_blue },
Tag = { fg = palette.pale_purple },
Debug = { fg = palette.red },
- Delimiter = { fg = palette.gray },
+ Delimiter = { fg = palette.white },
SpecialComment = { fg = palette.medium_gray, style = opts.comments },
Underlined = { style = "underline" },
Bold = { style = "bold" },