Rust: some changes to colors

This commit is contained in:
Barna Máté 2024-12-21 22:10:12 +01:00
parent c009b792d7
commit f47a55c844

View file

@ -45,6 +45,11 @@ local theme = lush(function(injected_functions)
-- Plugins
DiagnosticUnnecessary({ fg = colors.none }),
-- TODO telescope fix preview
-- Cmp
CmpItemKindFunction({ fg = colors.gold }),
CmpItemKindStruct({ fg = colors.gold }),
CmpItemKindConstant({ fg = colors.cyan }),
CmpItemKindVariable({ fg = colors.cyan }),
-- Language specific stuff..
-- Rust
@ -52,6 +57,8 @@ local theme = lush(function(injected_functions)
sym("@lsp.typemod.variable.reference.rust")({ fg = colors.violet }),
sym("@lsp.type.selfTypeKeyword")({ fg = colors.violet }),
sym("@lsp.type.variable.rust")({ fg = colors.white }),
sym("@lsp.type.property.rust")({ fg = colors.cyan }),
sym("@lsp.type.parameter.rust")({ fg = colors.white }),
sym("@lsp.type.derive.rust")({ fg = colors.gold }),
rustSigil({ fg = colors.orange_peel }),
rustSelf({ fg = colors.violet }),