Fix highlight colors and other minor fixes

This commit is contained in:
2025-12-25 23:37:49 +00:00
parent b6e40ae1a6
commit 9ff3a32abd
11 changed files with 1035 additions and 249 deletions

View File

@@ -23,7 +23,7 @@ static const std::unordered_map<uint8_t, LSP> kLsps = {
static const std::unordered_map<std::string, Language> kLanguages = {
{"bash", {"bash", LANG(bash)}},
{"c", {"c", LANG(c), 1}},
{"c", {"c", LANG(cpp), 1}},
{"cpp", {"cpp", LANG(cpp), 1}},
{"h", {"h", LANG(cpp), 1}},
{"css", {"css", LANG(css)}},

View File

@@ -13,7 +13,6 @@ struct Language {
};
TS_DEF(bash);
TS_DEF(c);
TS_DEF(cpp);
TS_DEF(css);
TS_DEF(fish);