diff --git a/modules/nvim/config/colors/winterly.lua b/modules/nvim/config/colors/winterly.lua index 3291c96..d39dbf8 100644 --- a/modules/nvim/config/colors/winterly.lua +++ b/modules/nvim/config/colors/winterly.lua @@ -200,6 +200,7 @@ 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" }) @@ -208,7 +209,6 @@ hi("@lsp.typemod.keyword.documentation", { fg = palette.grey, bold = true }) if vim.o.background == "light" then -- TODO: Define light scheme - -- @todo: dksljfksdlf else -- Default colors only used with a dark background. hi("ColorColumn", { bg = palette.red_subtle_bg, ctermbg = "DarkRed" }) @@ -277,10 +277,10 @@ else hi("Unused", { fg = palette.grey_bright, undercurl = true, ctermfg = "LightGrey" }) hi("Constant", { fg = palette.yellow_brighter, ctermfg = "LightYellow" }) hi("Special", { fg = palette.silver, ctermfg = "LightGrey" }) - hi("Identifier", { fg = palette.fg, bold = true, ctermfg = "White", cterm = { bold = true } }) - hi("Statement", { fg = palette.fg_alt, italic = true, ctermfg = "White" }) + 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.silver, bold = true, ctermfg = "LightCyan" }) + hi("Type", { fg = palette.fg, italic = true, ctermfg = "LightCyan" }) hi("Underlined", { fg = palette.silver, underline = true, ctermfg = "LightGrey", cterm = { underline = true } }) hi("Ignore", { fg = palette.bg, ctermfg = "Black" }) hi( @@ -309,7 +309,7 @@ else hi("NeogitDiffAdd", { link = "DiffAdd" }) hi("NeogitDiffDelete", { link = "DiffDelete" }) hi("NeogitDiffContext", { bg = palette.bg_secondary, fg = palette.fg }) - hi("NeogitDiffContextCursor", { bg = palette.grey_bright, fg = palette.bg_secondary }) + hi("NeogitDiffContextCursor", { bg = palette.magenta_subtle_bg_darker, fg = palette.magenta_brighter }) hi("NeogitDiffAddCursor", { bg = palette.green_bright, fg = palette.green_subtle_bg }) hi("NeogitDiffDeleteCursor", { bg = palette.red_bright, fg = palette.red_subtle_bg }) hi("NeogitDiffContextHighlight", { link = "NeogitDiffContext" }) diff --git a/modules/nvim/config/lua/plugins/treesitter.lua b/modules/nvim/config/lua/plugins/treesitter.lua index 732b057..33eb69b 100644 --- a/modules/nvim/config/lua/plugins/treesitter.lua +++ b/modules/nvim/config/lua/plugins/treesitter.lua @@ -10,7 +10,6 @@ return { "bash", "c", "css", - "comment", "diff", "html", "javascript",