Skip to content

Instantly share code, notes, and snippets.

@ZacharyThompson
Created January 19, 2024 23:42
Show Gist options
  • Save ZacharyThompson/ed3ccac18552bf1e7c35a11aed30a6b7 to your computer and use it in GitHub Desktop.
Save ZacharyThompson/ed3ccac18552bf1e7c35a11aed30a6b7 to your computer and use it in GitHub Desktop.
Auto update neovim from source
#!/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