Last active
September 3, 2023 20:10
-
-
Save ant1fact/7bef7ef76c692f878d58c8b92b3aa834 to your computer and use it in GitHub Desktop.
Install neovim in Ubuntu/WSL
This file contains 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
cd | |
sudo apt-get install ninja-build gettext cmake unzip curl | |
git clone https://github.com/neovim/neovim.git | |
cd neovim | |
git checkout v0.9.1 | |
make CMAKE_BUILD_TYPE=Release | |
sudo make install | |
sudo cp ./build/bin/* /usr/bin/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment