diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-21 21:46:14 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-21 21:46:14 +0200 |
commit | 74e9a8622e8eea1217a84801ea2fdaf531ab446f (patch) | |
tree | 35ba6f71e488e4f1bfc611bc0a8e3b4a0d1482f1 /lua | |
parent | 93d9125fa92811d9ffbb351cae26b0bc9a05d34c (diff) |
Add bold to tstype
Diffstat (limited to 'lua')
-rw-r--r-- | lua/no-clown-fiesta/Treesitter.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/no-clown-fiesta/Treesitter.lua b/lua/no-clown-fiesta/Treesitter.lua index 4b910d9..6d4a040 100644 --- a/lua/no-clown-fiesta/Treesitter.lua +++ b/lua/no-clown-fiesta/Treesitter.lua @@ -3,7 +3,7 @@ local Treesitter = { TSAnnotation = { fg = C.white }, TSAttribute = { fg = C.white }, TSConstructor = { fg = C.white }, - TSType = { fg = C.white }, + TSType = { fg = C.white, style = "bold" }, TSTypeBuiltin = { fg = C.white }, TSConditional = { fg = C.gray_blue }, TSException = { fg = C.red }, |