diff options
author | Michael Daffin | 2022-02-23 14:25:44 +0000 |
---|---|---|
committer | GitHub | 2022-02-23 14:25:44 +0000 |
commit | f83843ceba65f7719d8b208eda0ebf15fae77603 (patch) | |
tree | 3048637d7fcc28e48eb564f9f4058d58e109925c /.gitmodules | |
parent | 40eb1268c72b60f1249389c58892e7c45d268cff (diff) |
Add kotlin language (#1689)
* Add kotlin language
Queries taken from https://github.com/nvim-treesitter/nvim-treesitter/blob/master/queries/kotlin seem to work well enough for my needs though I don't use kotlin heavily.
* Update lang-support doc
* Updates the kotlin highlight query to use helixs scopes
* Updates the queries from PR feedback
* Adds 'shallow = true' to gitmodules
* Removes kotlin locals.scm
* Remove blank line
Co-authored-by: Ivan Tham <pickfire@riseup.net>
Co-authored-by: Ivan Tham <pickfire@riseup.net>
Diffstat (limited to '.gitmodules')
-rw-r--r-- | .gitmodules | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.gitmodules b/.gitmodules index 5b6609a8..fa1e0900 100644 --- a/.gitmodules +++ b/.gitmodules @@ -209,7 +209,7 @@ [submodule "helix-syntax/languages/tree-sitter-graphql"] path = helix-syntax/languages/tree-sitter-graphql url = https://github.com/bkegley/tree-sitter-graphql - shallow = true + shallow = true [submodule "helix-syntax/languages/tree-sitter-elm"] path = helix-syntax/languages/tree-sitter-elm url = https://github.com/elm-tooling/tree-sitter-elm @@ -229,3 +229,8 @@ [submodule "helix-syntax/languages/tree-sitter-erlang"] path = helix-syntax/languages/tree-sitter-erlang url = https://github.com/the-mikedavis/tree-sitter-erlang + shallow = true +[submodule "helix-syntax/languages/tree-sitter-kotlin"] + path = helix-syntax/languages/tree-sitter-kotlin + url = https://github.com/fwcd/tree-sitter-kotlin.git + shallow = true |