Add syntax highlighting for TOML

This commit is contained in:
Max Brunsfeld 2022-04-21 16:39:49 -07:00
parent 0c587ae73c
commit 3a878c8d6c
8 changed files with 76 additions and 0 deletions

View file

@ -37,6 +37,11 @@ pub fn build_language_registry(login_shell_env_loaded: Task<()>) -> LanguageRegi
tree_sitter_rust::language(),
Some(Arc::new(rust::RustLspAdapter)),
),
(
"toml",
tree_sitter_toml::language(),
None, //
),
(
"tsx",
tree_sitter_typescript::language_tsx(),