Skip to content
This repository has been archived by the owner on Jan 2, 2024. It is now read-only.

Installation

Max Del Canto edited this page Jun 16, 2022 · 10 revisions

Installation

Before you start

You must install one nerd font, my recommentation are: Hack Nerd Font, Fire Code Nerd Font, Sauce Code Pro Nerd Font, VictorMono Nerd Font, you just need to pick one to install.

Linux

installing neovim

from source: neovim nightly

with package manager - fedora

sudo dnf copr enable agriffis/neovim-nightly
sudo dnf install -y neovim python3-neovim

with package manager - ubuntu

sudo apt-get install python3-dev python3-pip python3-pip python3-venv
sudo add-apt-repository ppa:neovim-ppa/unstable
sudo apt-get update
sudo apt-get install neovim
sudo apt install npm nodejs git gcc fd-find ripgrep
sudo npm install -g neovim
python3 -m pip install pynvim

MacOs

installing neovim

from source: neovim nightly

with package manager

brew

brew install --HEAD neovim

install all you need

brew install git node gcc fd ripgrep
npm install -g neovim
pip install pynvim

Windows

installing neovim

from source: neovim nightly

with package manager

scoop

scoop bucket add versions
scoop install neovim-nightly

install all you need

scoop install git nodejs gcc fd ripgrep python
npm install -g neovim
pip install pynvim