Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 647 Bytes

install-neovim.md

File metadata and controls

38 lines (27 loc) · 647 Bytes

Install NeoVim

Installing NeoVim

Windows

winget install --id BurntSushi.ripgrep.MSVC
winget install Neovim.Neovim

Raspberry Pi

sudo apt install snapd
sudo snap install --classic nvim

Will be in path /snap/bin/nvim

Linux

The apt version on Ubuntu is way out of date. Download from GitHub.

sudo apt install libfuse2 ripgrep
wget https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage
chmod u+x nvim.appimage
mkdir bin
mv nvim.appimage bin/nvim

Add bin to path and alias nvim

alias vi=nvim
alias vim=nvim