- Download Neovim, and Extract:
curl -LO https://github.com/neovim/neovim/releases/download/stable/nvim-linux-x86_64.tar.gz
tar -xzf nvim-linux-x86_64.tar.gz
sudo mv nvim-linux-x86_64 /usr/local/bin/
sudo ln -s /usr/local/bin/nvim/bin/nvim /usr/local/bin/nvim
rm nvim-linux-x86_64.tar.gz
- Verify installation:
nvim --version
-
Go to the Neovim GitHub Releases. Download the
nvim-win64.msi
file from the latest release. -
Run the downloaded
nvim-win64.msi
file. Follow the prompts in the installer to complete the installation.
Clone this repo into ~/.config/
(Ubuntu) or ~/AppData/Local/
(Windows) as /nvim
cd ~/.config
git clone git@github.com:blakekrpec/neovim-config.git nvim
cd ~/AppData/Local/
git clone git@github.com:blakekrpec/neovim-config.git nvim
Open a terminal on Ubuntu, or a Windows Powershell on Windows and enter nvim
. You can either run nvim from a project directory, or pass the project directory path to nvim
.
Run nvim -- --no-session
to start nvim
with auto-session
disabled.