This commit is contained in:
2025-10-28 00:19:17 -04:00
parent 244775f689
commit bfee06742f
8 changed files with 130 additions and 32 deletions

View File

@@ -11,7 +11,7 @@ return {
dim_inactive = true,
styles = { -- Style to be applied to different syntax groups
comments = "italic", -- Keep comments italic - this makes sense
functions = "bold",
functions = "bold,italic",
keywords = "NONE", -- Remove italic from keywords
variables = "NONE",
conditionals = "bold", -- Keep conditionals bold for control flow
@@ -42,9 +42,9 @@ return {
})
vim.cmd("colorscheme github_dark_high_contrast")
-- Apply custom function highlighting after colorscheme loads
vim.cmd [[
vim.cmd([[
highlight Function guifg=#58a6ff gui=bold
highlight! link @function Function
highlight! link @function.call Function
@@ -58,7 +58,7 @@ return {
highlight Keyword gui=NONE
highlight! link @keyword Keyword
highlight! link @keyword.function Keyword
]]
]])
end,
},
}