From 2a1191d6d636184d930c3d9c55951f78e3ffb87c Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Thu, 7 Oct 2021 09:45:19 +0800 Subject: [PATCH] TSConstant bold only instead of bold,italic --- colors/zenbones.vim | 2 +- colors/zenflesh.vim | 2 +- lua/zenbones/init.lua | 2 +- lua/zenflesh/init.lua | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/colors/zenbones.vim b/colors/zenbones.vim index f96c989..b17bf25 100644 --- a/colors/zenbones.vim +++ b/colors/zenbones.vim @@ -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 StatusLine guifg=#2C363C guibg=#D1C7C3 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 TabLineSel guifg=NONE guibg=NONE guisp=NONE gui=bold highlight TelescopeMatching guifg=#88507D guibg=NONE guisp=NONE gui=bold diff --git a/colors/zenflesh.vim b/colors/zenflesh.vim index dde3afb..0185b02 100644 --- a/colors/zenflesh.vim +++ b/colors/zenflesh.vim @@ -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 StatusLine guifg=#B4BDC3 guibg=#3D3836 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 TabLineSel guifg=NONE guibg=NONE guisp=NONE gui=bold highlight TelescopeMatching guifg=#B279A7 guibg=NONE guisp=NONE gui=bold diff --git a/lua/zenbones/init.lua b/lua/zenbones/init.lua index 70a28c6..9d2195e 100644 --- a/lua/zenbones/init.lua +++ b/lua/zenbones/init.lua @@ -219,7 +219,7 @@ local theme = lush(function() -- TSComment { }; -- For comment blocks. -- TSConstructor { }; -- For constructor calls and definitions: ` { }` in Lua, and Java constructors. -- 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. TSConstMacro { Number }; -- For constants that are defined by macros: `NULL` in C. -- TSError { }; -- For syntax/parser errors. diff --git a/lua/zenflesh/init.lua b/lua/zenflesh/init.lua index b9824bf..13754f2 100644 --- a/lua/zenflesh/init.lua +++ b/lua/zenflesh/init.lua @@ -219,7 +219,7 @@ local theme = lush(function() -- TSComment { }; -- For comment blocks. -- TSConstructor { }; -- For constructor calls and definitions: ` { }` in Lua, and Java constructors. -- 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. TSConstMacro { Number }; -- For constants that are defined by macros: `NULL` in C. -- TSError { }; -- For syntax/parser errors.