TSConstant bold only instead of bold,italic

This commit is contained in:
Michael Chris Lopez
2021-10-07 09:45:19 +08:00
parent 63fa98885e
commit 2a1191d6d6
4 changed files with 4 additions and 4 deletions

View File

@@ -120,7 +120,7 @@ highlight SpellRare guifg=#974352 guibg=NONE guisp=NONE gui=undercurl
highlight Statement guifg=#2C363C guibg=NONE guisp=NONE gui=bold highlight Statement guifg=#2C363C guibg=NONE guisp=NONE gui=bold
highlight StatusLine guifg=#2C363C guibg=#D1C7C3 guisp=NONE gui=NONE highlight StatusLine guifg=#2C363C guibg=#D1C7C3 guisp=NONE gui=NONE
highlight StatusLineNC guifg=#596A76 guibg=#DAD3CF guisp=NONE gui=NONE highlight StatusLineNC guifg=#596A76 guibg=#DAD3CF guisp=NONE gui=NONE
highlight TSConstant guifg=#44525B guibg=NONE guisp=NONE gui=bold,italic highlight TSConstant guifg=#44525B guibg=NONE guisp=NONE gui=bold
highlight TabLine guifg=#2C363C guibg=#D1C7C3 guisp=NONE gui=italic highlight TabLine guifg=#2C363C guibg=#D1C7C3 guisp=NONE gui=italic
highlight TabLineSel guifg=NONE guibg=NONE guisp=NONE gui=bold highlight TabLineSel guifg=NONE guibg=NONE guisp=NONE gui=bold
highlight TelescopeMatching guifg=#88507D guibg=NONE guisp=NONE gui=bold highlight TelescopeMatching guifg=#88507D guibg=NONE guisp=NONE gui=bold

View File

@@ -120,7 +120,7 @@ highlight SpellRare guifg=#CB7A83 guibg=NONE guisp=NONE gui=undercurl
highlight Statement guifg=#B4BDC3 guibg=NONE guisp=NONE gui=bold highlight Statement guifg=#B4BDC3 guibg=NONE guisp=NONE gui=bold
highlight StatusLine guifg=#B4BDC3 guibg=#3D3836 guisp=NONE gui=NONE highlight StatusLine guifg=#B4BDC3 guibg=#3D3836 guisp=NONE gui=NONE
highlight StatusLineNC guifg=#CAD0D4 guibg=#312D2B guisp=NONE gui=NONE highlight StatusLineNC guifg=#CAD0D4 guibg=#312D2B guisp=NONE gui=NONE
highlight TSConstant guifg=#979FA4 guibg=NONE guisp=NONE gui=bold,italic highlight TSConstant guifg=#979FA4 guibg=NONE guisp=NONE gui=bold
highlight TabLine guifg=#B4BDC3 guibg=#3D3836 guisp=NONE gui=italic highlight TabLine guifg=#B4BDC3 guibg=#3D3836 guisp=NONE gui=italic
highlight TabLineSel guifg=NONE guibg=NONE guisp=NONE gui=bold highlight TabLineSel guifg=NONE guibg=NONE guisp=NONE gui=bold
highlight TelescopeMatching guifg=#B279A7 guibg=NONE guisp=NONE gui=bold highlight TelescopeMatching guifg=#B279A7 guibg=NONE guisp=NONE gui=bold

View File

@@ -219,7 +219,7 @@ local theme = lush(function()
-- TSComment { }; -- For comment blocks. -- TSComment { }; -- For comment blocks.
-- TSConstructor { }; -- For constructor calls and definitions: ` { }` in Lua, and Java constructors. -- TSConstructor { }; -- For constructor calls and definitions: ` { }` in Lua, and Java constructors.
-- TSConditional { }; -- For keywords related to conditionnals. -- TSConditional { }; -- For keywords related to conditionnals.
TSConstant { Identifier, gui = "bold,italic" }; -- For constants TSConstant { Identifier, gui = "bold" }; -- For constants
TSConstBuiltin { Number }; -- For constant that are built in the language: `nil` in Lua. TSConstBuiltin { Number }; -- For constant that are built in the language: `nil` in Lua.
TSConstMacro { Number }; -- For constants that are defined by macros: `NULL` in C. TSConstMacro { Number }; -- For constants that are defined by macros: `NULL` in C.
-- TSError { }; -- For syntax/parser errors. -- TSError { }; -- For syntax/parser errors.

View File

@@ -219,7 +219,7 @@ local theme = lush(function()
-- TSComment { }; -- For comment blocks. -- TSComment { }; -- For comment blocks.
-- TSConstructor { }; -- For constructor calls and definitions: ` { }` in Lua, and Java constructors. -- TSConstructor { }; -- For constructor calls and definitions: ` { }` in Lua, and Java constructors.
-- TSConditional { }; -- For keywords related to conditionnals. -- TSConditional { }; -- For keywords related to conditionnals.
TSConstant { Identifier, gui = "bold,italic" }; -- For constants TSConstant { Identifier, gui = "bold" }; -- For constants
TSConstBuiltin { Number }; -- For constant that are built in the language: `nil` in Lua. TSConstBuiltin { Number }; -- For constant that are built in the language: `nil` in Lua.
TSConstMacro { Number }; -- For constants that are defined by macros: `NULL` in C. TSConstMacro { Number }; -- For constants that are defined by macros: `NULL` in C.
-- TSError { }; -- For syntax/parser errors. -- TSError { }; -- For syntax/parser errors.