fix: improved tree-sitter support (#40)

This commit is contained in:
Santos Gallegos 2021-05-17 01:44:57 -05:00 committed by GitHub
parent 5eb534d77e
commit 9466f5e618
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -194,6 +194,9 @@ function M.setup(config)
-- TSBoolean = { }; -- For booleans.
-- TSCharacter = { }; -- For characters.
-- TSComment = { }; -- For comment blocks.
TSNote = { fg = c.bg, bg = c.info },
TSWarning = { fg = c.bg, bg = c.warning },
TSDanger = { fg = c.bg, bg = c.error },
TSConstructor = { fg = c.magenta }, -- For constructor calls and definitions: `= { }` in Lua, and Java constructors.
-- TSConditional = { }; -- For keywords related to conditionnals.
-- TSConstant = { }; -- For constants