Created
May 2, 2019 15:39
-
-
Save dohsimpson/62b4bf6b028138990bb5e3fb0c0f4093 to your computer and use it in GitHub Desktop.
Install VIM8 from source (Unix)
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/bash | |
cd /tmp/ | |
wget https://github.com/vim/vim/archive/v8.1.1244.tar.gz | |
tar xzf v8.1.1244.tar.gz | |
cd vim-8.1.1244/ | |
./configure --enable-perlinterp --enable-rubyinterp --enable-python3interp --enable-luainterp | |
make | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment