refactor(api): use a keyset for highlight dicts

This commit is contained in:
Björn Linse
2022-02-02 22:01:52 +01:00
parent 21cdecc8e0
commit 0bafa44f8b
6 changed files with 143 additions and 142 deletions

View File

@@ -78,5 +78,32 @@ return {
option = {
"scope";
};
highlight = {
"bold";
"standout";
"underline";
"undercurl";
"italic";
"reverse";
"default";
"global";
"cterm";
"foreground"; "fg";
"background"; "bg";
"ctermfg";
"ctermbg";
"special"; "sp";
"link";
"fallback";
"temp";
};
highlight_cterm = {
"bold";
"standout";
"underline";
"undercurl";
"italic";
"reverse";
};
}