Created
December 14, 2015 13:51
-
-
Save belminf/235abc0084a3a29717f7 to your computer and use it in GitHub Desktop.
Install VIM 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
## REQUIREMENTS: | |
# RHEL: | |
# $ sudo yum install python-devel ruby-devel ncurses-devel | |
## SOURCE: | |
# Get from https://github.com/vim/vim/releases | |
# $ wget https://github.com/vim/vim/archive/v7.4.972.tar.gz | |
## INSTALL: | |
CFLAGS=-DFEAT_CONCEAL ./configure --prefix=$HOME/local --enable-fail-if-missing --with-features=normal --disable-netbeans --enable-cscope --enable-pythoninterp=dynamic --enable-rubyinterp=dynamic | |
make && make install | |
## More info | |
# $ ./configure --help |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment