Marks Notes

neovim

Installation

Latest version

To get the latest version of neovim on any linux system, run

curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.tar.gz
sudo rm -rf /opt/nvim
sudo tar -C /opt -xzf nvim-linux-x86_64.tar.gz

Then add neovim to your path (either in .profile or .zshrc)

export PATH="$PATH:/opt/nvim-linux-x86_64/bin"

Via apt

Version 0.10.4-8 is in debian trixie.

sudo apt install neovim