https://github.com/statiolake/neovim-treesitter-binaries
https://github.com/statiolake/neovim-treesitter-binaries
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/statiolake/neovim-treesitter-binaries
- Owner: statiolake
- License: mit
- Created: 2025-07-26T02:22:03.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2026-05-03T05:41:20.000Z (about 2 months ago)
- Last Synced: 2026-05-03T07:09:17.517Z (about 2 months ago)
- Language: Shell
- Size: 28.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Neovim Tree Sitter Parser Binary
tree sitter parser binary for neovim, build nightly using github action until `nvim-treesitter` has proper precompile parser https://github.com/nvim-treesitter/nvim-treesitter/discussions/2419
# Usage
download `all.zip` and extract the parser `so` file to `nvim-treesitter/parser/`
## Example Packer using wget and unzip
### Download
```bash
wget https://github.com/anasrar/nvim-treesitter-parser-bin/releases/download/linux/all.zip
```
### Packer
```bash
# extract specific parser
unzip -j all.zip rust.so json.so -d ~/.local/share/nvim/site/pack/packer/start/nvim-treesitter/parser/
# extract all parser
unzip -j all.zip *.so -d ~/.local/share/nvim/site/pack/packer/start/nvim-treesitter/parser/
```
### Lazy
```bash
# extract specific parser
unzip -j all.zip rust.so json.so -d ~/.local/share/nvim/lazy/nvim-treesitter/parser/
# extract all parser
unzip -j all.zip *.so -d ~/.local/share/nvim/lazy/nvim-treesitter/parser/
```
# Platform
- linux `tested`
- windows `untested`
- android-aarch64-termux `tested`