diff options
| author | Amaan Qureshi <amaanq12@gmail.com> | 2023-02-18 15:00:37 -0500 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2023-02-23 15:28:30 -0800 |
| commit | 1641c4f3b4128e900c836190df19923fbe4005fd (patch) | |
| tree | ca5c527f556fa9d1e48305020ead84ff425470e8 /lua | |
| parent | ci: remove ready_for_review type (diff) | |
| download | nvim-treesitter-1641c4f3b4128e900c836190df19923fbe4005fd.tar nvim-treesitter-1641c4f3b4128e900c836190df19923fbe4005fd.tar.gz nvim-treesitter-1641c4f3b4128e900c836190df19923fbe4005fd.tar.bz2 nvim-treesitter-1641c4f3b4128e900c836190df19923fbe4005fd.tar.lz nvim-treesitter-1641c4f3b4128e900c836190df19923fbe4005fd.tar.xz nvim-treesitter-1641c4f3b4128e900c836190df19923fbe4005fd.tar.zst nvim-treesitter-1641c4f3b4128e900c836190df19923fbe4005fd.zip | |
feat: add starlark
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index cfdd584a0..7074cc363 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1234,6 +1234,15 @@ list.sql = { maintainers = { "@derekstride" }, } +list.starlark = { + install_info = { + url = "https://github.com/amaanq/tree-sitter-starlark", + files = { "src/parser.c", "src/scanner.cc" }, + }, + filetype = "bzl", + maintainers = { "@amaanq" }, +} + list.supercollider = { install_info = { url = "https://github.com/madskjeldgaard/tree-sitter-supercollider", |
