diff options
author | ath3 | 2021-10-22 23:57:21 +0000 |
---|---|---|
committer | GitHub | 2021-10-22 23:57:21 +0000 |
commit | 787ba4f233a38e42cfeab5c5125122d7d7b85e8f (patch) | |
tree | 65ffc5ec151db68c9967ebfecec2640d4df87722 /languages.toml | |
parent | 6c995fa6906f9d6895d27fd4b595ba254cbb966a (diff) |
CMake support (#888)
Diffstat (limited to 'languages.toml')
-rw-r--r-- | languages.toml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml index 67f4d3d6..a393b4a6 100644 --- a/languages.toml +++ b/languages.toml @@ -346,3 +346,11 @@ file-types = ["scm"] roots = [] comment-token = ";" indent = { tab-width = 2, unit = " " } + +[[language]] +name = "cmake" +scope = "source.cmake" +file-types = ["cmake", "CMakeLists.txt"] +roots = [] +comment-token = "#" +indent = { tab-width = 2, unit = " " } |