Installation
Download
You can download pre-built from GitHub release page:
- linux
- mac
- windows
curl -fsSL https://github.com/rsvim/rsvim/releases/latest/download/rsvim-x86_64-unknown-linux-gnu.tar.gz | tar zxf -
curl -fsSL https://github.com/rsvim/rsvim/releases/latest/download/rsvim-aarch64-apple-darwin.tar.gz | tar zxf -
Invoke-WebRequest -Uri https://github.com/rsvim/rsvim/releases/latest/download/rsvim-x86_64-pc-windows-msvc.zip -OutFile rsvim.zip
Expand-Archive -Path rsvim.zip
For nightly, download the nightly tag pre-release:
- linux
- mac
- windows
curl -fsSL https://github.com/rsvim/rsvim/releases/download/nightly/rsvim-x86_64-unknown-linux-gnu.tar.gz | tar zxf -
curl -fsSL https://github.com/rsvim/rsvim/releases/download/nightly/rsvim-aarch64-apple-darwin.tar.gz | tar zxf -
Invoke-WebRequest -Uri https://github.com/rsvim/rsvim/releases/download/nightly/rsvim-x86_64-pc-windows-msvc.zip -OutFile rsvim.zip
Expand-Archive -Path rsvim.zip
Build From Source
You can also build with cargo:
cargo install --locked rsvim
For latest updates, build with main branch:
cargo install --locked rsvim --git https://github.com/rsvim/rsvim.git --branch main