diff options
author | Matouš Dzivjak | 2022-01-14 10:55:44 +0000 |
---|---|---|
committer | GitHub | 2022-01-14 10:55:44 +0000 |
commit | ac6b2de0fdbb9120f0bc3bca77cd1ff6998bc012 (patch) | |
tree | a64c98849c37cc601cf432991df593bb53bd1837 | |
parent | f80da7b4dee2a0531785dab0779164f6f2c2ee8a (diff) |
feat(languages): enable css tree-sitter for scss files (#1507)
The grammer works fine for scss files to and it is better than no hihglighting at all
-rw-r--r-- | languages.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/languages.toml b/languages.toml index b305dcde..2c870ab2 100644 --- a/languages.toml +++ b/languages.toml @@ -158,7 +158,7 @@ indent = { tab-width = 2, unit = " " } name = "css" scope = "source.css" injection-regex = "css" -file-types = ["css"] +file-types = ["css", "scss"] roots = [] indent = { tab-width = 2, unit = " " } |