diff options
| author | George Harker <george@george-graphics.co.uk> | 2025-11-05 20:13:53 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-05 20:13:53 -0800 |
| commit | 1ddb266477eccf432983d723f94b86361b020010 (patch) | |
| tree | 08f07f4ddc900ecc11bc6929b1dfec4008325a6f /lua | |
| parent | fix(typescript): support type param for styled components (#8066) (diff) | |
| download | nvim-treesitter-1ddb266477eccf432983d723f94b86361b020010.tar nvim-treesitter-1ddb266477eccf432983d723f94b86361b020010.tar.gz nvim-treesitter-1ddb266477eccf432983d723f94b86361b020010.tar.bz2 nvim-treesitter-1ddb266477eccf432983d723f94b86361b020010.tar.lz nvim-treesitter-1ddb266477eccf432983d723f94b86361b020010.tar.xz nvim-treesitter-1ddb266477eccf432983d723f94b86361b020010.tar.zst nvim-treesitter-1ddb266477eccf432983d723f94b86361b020010.zip | |
feat(parsers): add zsh support (#8240)
Co-authored-by: Christian Clason <c.clason@uni-graz.at>
Co-authored-by: Riley Bruins <ribru17@hotmail.com>
Co-authored-by: Tayfun Bocek <tayfunbocek@live.ca>
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index e980ae3c3..883403fd6 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -2701,4 +2701,12 @@ return { maintainers = { '@rockorager' }, tier = 2, }, + zsh = { + install_info = { + revision = 'v0.34.0', + url = 'https://github.com/georgeharker/tree-sitter-zsh', + }, + maintainers = { '@georgeharker' }, + tier = 1, + }, } |
