From b43aae5545761caca3a53d3ae4591b4e6e886db8 Mon Sep 17 00:00:00 2001 From: Dennis Date: Mon, 10 Nov 2025 10:07:02 +0100 Subject: [PATCH] updates some highlights --- modules/aerospace/work.nix | 30 ++++++++++++++++++++----- modules/nvim/config/colors/winterly.lua | 5 +++-- 2 files changed, 27 insertions(+), 8 deletions(-) diff --git a/modules/aerospace/work.nix b/modules/aerospace/work.nix index 5ee67d3..a4df33f 100644 --- a/modules/aerospace/work.nix +++ b/modules/aerospace/work.nix @@ -37,12 +37,30 @@ alt-4 = "workspace 4"; alt-5 = "workspace 5"; alt-6 = "workspace 6"; - alt-shift-1 = [ "move-node-to-workspace 1" "workspace 1" ]; - alt-shift-2 = [ "move-node-to-workspace 2" "workspace 2" ]; - alt-shift-3 = [ "move-node-to-workspace 3" "workspace 3" ]; - alt-shift-4 = [ "move-node-to-workspace 4" "workspace 4" ]; - alt-shift-5 = [ "move-node-to-workspace 5" "workspace 5" ]; - alt-shift-6 = [ "move-node-to-workspace 6" "workspace 6" ]; + alt-shift-1 = [ + "move-node-to-workspace 1" + "workspace 1" + ]; + alt-shift-2 = [ + "move-node-to-workspace 2" + "workspace 2" + ]; + alt-shift-3 = [ + "move-node-to-workspace 3" + "workspace 3" + ]; + alt-shift-4 = [ + "move-node-to-workspace 4" + "workspace 4" + ]; + alt-shift-5 = [ + "move-node-to-workspace 5" + "workspace 5" + ]; + alt-shift-6 = [ + "move-node-to-workspace 6" + "workspace 6" + ]; alt-tab = "workspace-back-and-forth"; alt-shift-tab = "move-workspace-to-monitor --wrap-around next"; }; diff --git a/modules/nvim/config/colors/winterly.lua b/modules/nvim/config/colors/winterly.lua index d60631c..17a3d00 100644 --- a/modules/nvim/config/colors/winterly.lua +++ b/modules/nvim/config/colors/winterly.lua @@ -179,12 +179,14 @@ hi("@keyword.exception", { link = "Exception" }) hi("@variable", { link = "Identifier" }) hi("@type", { link = "Type" }) +hi("@type.builtin", { link = "Type" }) hi("@type.definition", { link = "Typedef" }) hi("@module", { link = "Identifier" }) hi("@keyword.import", { link = "Include" }) hi("@keyword.directive", { link = "PreProc" }) hi("@keyword.debug", { link = "Debug" }) hi("@tag", { link = "Tag" }) +hi("@tag.tsx", { link = "Identifier" }) hi("@tag.builtin", { link = "Special" }) -- LSP semantic tokens @@ -200,7 +202,6 @@ hi("@lsp.type.method", { link = "Function" }) hi("@lsp.type.namespace", { link = "Structure" }) hi("@lsp.type.parameter", { link = "Identifier" }) hi("@lsp.type.property", { link = "Identifier" }) -hi("@lsp.type.property.typescript", { fg = palette.silver, ctermfg = "White" }) hi("@lsp.type.struct", { link = "Structure" }) hi("@lsp.type.type", { link = "Type" }) hi("@lsp.type.typeParameter", { link = "TypeDef" }) @@ -280,7 +281,7 @@ else hi("Identifier", { fg = palette.fg, ctermfg = "White", cterm = { bold = true } }) hi("Statement", { fg = palette.fg_alt, bold = true, ctermfg = "White" }) hi("PreProc", { fg = palette.magenta, ctermfg = "LightMagenta" }) - hi("Type", { fg = palette.fg, italic = true, ctermfg = "LightCyan" }) + hi("Type", { fg = palette.silver, bold = true, ctermfg = "LightCyan" }) hi("Underlined", { fg = palette.silver, underline = true, ctermfg = "LightGrey", cterm = { underline = true } }) hi("Ignore", { fg = palette.bg, ctermfg = "Black" }) hi(