Skip to content

Instantly share code, notes, and snippets.

@gorillamoe
Created June 25, 2014 16:50
Show Gist options
  • Save gorillamoe/0b0c79c8fcaa4d6e82dc to your computer and use it in GitHub Desktop.
Save gorillamoe/0b0c79c8fcaa4d6e82dc to your computer and use it in GitHub Desktop.
Install/Build Vim Latest/Full in CentOS
#!/bin/sh
yum install \
ruby \
ruby-devel \
python \
python-devel \
lua \
lua-devel \
gcc \
make \
ncurses-devel
cd /usr/local/src
wget ftp://ftp.vim.org/pub/vim/unix/vim-7.4.tar.bz2
tar -xjf vim-7.4.tar.bz2
cd vim47
./configure --with-features=huge \
--enable-rubyinterp \
--enable-pythoninterp \
--with-python-config-dir=/usr/lib/python2.7-config \
--enable-cscope --prefix=/usr \
--enable-luainterp
make && make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment