Created
January 19, 2024 23:42
-
-
Save ZacharyThompson/ed3ccac18552bf1e7c35a11aed30a6b7 to your computer and use it in GitHub Desktop.
Auto update neovim from source
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
#!/bin/sh | |
git clone https://github.com/neovim/neovim.git | |
cd ./neovim | |
git checkout stable | |
make CMAKE_BUILD_TYPE=RelWithDebInfo | |
sudo make install | |
cd .. | |
rm -rf ./neovim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment