Last active
October 16, 2017 02:45
-
-
Save gavincyi/0a54be29080b47b962063e078edd05bf to your computer and use it in GitHub Desktop.
Install Vim 8 with Python, Python 3, Ruby and Lua support on Ubuntu 16.04
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
| cd workspace | |
| git clone https://github.com/vim/vim | |
| cd vim | |
| git pull && git fetch | |
| #In case Vim was already installed | |
| cd src | |
| make distclean | |
| cd .. | |
| ./configure \ | |
| --enable-multibyte \ | |
| --enable-python3interp \ | |
| --with-python3-config-dir=/opt/rh/rh-python35/root/usr/lib64/python3.5/config-3.5m \ | |
| --enable-gui=auto \ | |
| --with-features=huge \ | |
| --with-x \ | |
| --enable-fontset \ | |
| --enable-largefile \ | |
| --disable-netbeans \ | |
| --with-compiledby="Gavin.Chan" \ | |
| --enable-fail-if-missing | |
| make && make install DESTDIR=/home/gchan/build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment