Last active
March 18, 2021 17:52
-
-
Save eduardoarandah/40e18928363d0462b30aa18ffe2e1fbe to your computer and use it in GitHub Desktop.
Neovim nightly Install script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Gracias!!!
vengo del grupo de vim_es!
Saludos