Skip to content

Instantly share code, notes, and snippets.

@iharkatkavets
Last active September 23, 2023 07:04
Show Gist options
  • Save iharkatkavets/77c97e1f84c114a86b4e737fefd79862 to your computer and use it in GitHub Desktop.
Save iharkatkavets/77c97e1f84c114a86b4e737fefd79862 to your computer and use it in GitHub Desktop.
Install `neovim` on Raspberry Pi

All the next steps are performed on RaspberryPi machine in console

  1. Download the latest version of neovim from official repository. At the moment of writing the manual the latest version is 0.9.2
cd ~ && mkdir neovim-install && cd !$
wget 'https://github.com/neovim/neovim/archive/refs/tags/v0.9.2.tar.gz'
  1. Extract the downloaded archive and navigate inside
tar -xzvf v0.9.2.tar.gz
cd neovim-0.9.2/
  1. Navigate inside the exctracted folder and perform building the project. On Raspberry PI4 8G it takes ~5min
sudo make && make install

Here the links to best tutorials for configuring neovim

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment