Created
December 28, 2024 00:31
-
-
Save mcgarrigle/a445bff7e31b89825580d9cbbe8e93d8 to your computer and use it in GitHub Desktop.
compile neovim lastest on raspberry pi
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
| sudo apt-get install git cmake gettext | |
| git clone https://github.com/neovim/neovim.git | |
| cd neovim/ | |
| make CMAKE_BUILD_TYPE=RelWithDebInfo | |
| cd build/ | |
| cpack -G DEB | |
| sudo apt remove neovim | |
| sudo dpkg -i --force-overwrite nvim-linux64.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment