Skip to content

Instantly share code, notes, and snippets.

@eduardoarandah
Last active March 18, 2021 17:52
Show Gist options
  • Save eduardoarandah/40e18928363d0462b30aa18ffe2e1fbe to your computer and use it in GitHub Desktop.
Save eduardoarandah/40e18928363d0462b30aa18ffe2e1fbe to your computer and use it in GitHub Desktop.
Neovim nightly Install script
# where's installed current version?
which nvim
# what's current version?
nvim -v
# make tmp folder
mkdir -p ~/tmp
cd ~/tmp
# clone
git clone --depth 1 --branch nightly https://github.com/neovim/neovim.git
cd neovim
# if updating, then just "git pull"
# build and install
make CMAKE_BUILD_TYPE=RelWithDebInfo
sudo make install
# run
nvim
@gamba47
Copy link

gamba47 commented Mar 18, 2021

Gracias!!!

vengo del grupo de vim_es!

Saludos

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