mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -04:00
GH Actions runners use M1 hardware for `macos-14` now. Since macOS is one of the slowest platforms for parser compilation, switching should give us not only ARM coverage but also shorter CI times.
7 lines
340 B
Bash
Executable file
7 lines
340 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
curl -L https://github.com/neovim/neovim/releases/download/${NVIM_TAG}/nvim-macos.tar.gz | tar -xz
|
|
sudo ln -s "$PWD"/nvim-macos/bin/nvim /usr/local/bin
|
|
rm -rf "$PWD"/nvim-macos/lib/nvim/parser
|
|
mkdir -p ~/.local/share/nvim/site/pack/nvim-treesitter/start
|
|
ln -s "$PWD" ~/.local/share/nvim/site/pack/nvim-treesitter/start
|