From b8022b0fd4817fb0ed434a490dcb9ada7839553d Mon Sep 17 00:00:00 2001 From: Sam Davenport Date: Sat, 5 Apr 2025 13:17:16 -0500 Subject: [PATCH] styling done for now --- lua/sld/style.lua | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/lua/sld/style.lua b/lua/sld/style.lua index 0e045e9a..0f5b6210 100644 --- a/lua/sld/style.lua +++ b/lua/sld/style.lua @@ -33,12 +33,30 @@ require('gruvbox-material').setup { opt.fg = nil end - if group == '@string' then opt.link = nil - opt.fg = colors.yellow + opt.fg = colors.yellow end + if group == '@keyword.modifier' then + opt.link = nil + opt.fg = colors.orange + end + + if group == '@string.escape' then + opt.link = nil + opt.fg = colors.aqua + end + + if group == '@property' then + opt.link = nil + opt.fg = nil + end + + if group == '@module' then + opt.link = nil + opt.fg = colors.aqua + end return opt end,