fix: delimeter and typescript punctuation

This commit is contained in:
Brian Pooe 2023-12-17 21:45:48 +02:00
parent aa5595217a
commit 7184155033

View file

@ -202,7 +202,7 @@ return lush(function(injected_functions)
Special({ fg = orange }), -- (preferred) any special symbol Special({ fg = orange }), -- (preferred) any special symbol
SpecialChar({ Special }), -- special character in a constant SpecialChar({ Special }), -- special character in a constant
Tag({ fg = yellow }), -- you can use CTRL-] on this Tag({ fg = yellow }), -- you can use CTRL-] on this
Delimiter({ Special }), -- character that needs attention Delimiter({ fg = blue }), -- character that needs attention
SpecialComment({ Special }), -- special things inside a comment SpecialComment({ Special }), -- special things inside a comment
Debug({ Special }), -- debugging statements Debug({ Special }), -- debugging statements
@ -266,6 +266,7 @@ return lush(function(injected_functions)
sym("@type.builtin.typescript")({ fg = orange }), sym("@type.builtin.typescript")({ fg = orange }),
sym("@parameter.typescript")({ fg = white }), sym("@parameter.typescript")({ fg = white }),
sym("@punctuation.delimiter.typescript")({ fg = white }), sym("@punctuation.delimiter.typescript")({ fg = white }),
sym("@punctuation.special.typescript")({ fg = white }),
sym("@punctuation.delimiter")({ Delimiter }), -- delimiters ie: `.` sym("@punctuation.delimiter")({ Delimiter }), -- delimiters ie: `.`
sym("@punctuation.bracket")({ fg = fg }), -- brackets and parens. sym("@punctuation.bracket")({ fg = fg }), -- brackets and parens.