Skip to content

Instantly share code, notes, and snippets.

@belminf
Created December 14, 2015 13:51
Show Gist options
  • Save belminf/235abc0084a3a29717f7 to your computer and use it in GitHub Desktop.
Save belminf/235abc0084a3a29717f7 to your computer and use it in GitHub Desktop.
Install VIM from source
## 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