Skip to content

Instantly share code, notes, and snippets.

@zeekay
Created July 31, 2013 18:12
Show Gist options
  • Save zeekay/6124579 to your computer and use it in GitHub Desktop.
Save zeekay/6124579 to your computer and use it in GitHub Desktop.
Install Vim 7.3 on CentOS.
#!/bin/sh
# install deps
yum install -y gcc make ncurses-devel ruby ruby-devel python python-devel wget
# download vim sources
wget ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2
bunzip2 vim-7.3.tar.bz2 && tar xvf vim-7.3.tar
cd vim73
# compile vim
./configure --disable-selinux \
--enable-pythoninterp \
--enable-rubyinterp \
--enable-multibyte \
--disable-gui \
--with-features=huge \
--with-modified-by=zeekay
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment