Skip to content

Instantly share code, notes, and snippets.

@dimitardanailov
Last active September 19, 2015 10:18
Show Gist options
  • Save dimitardanailov/dada25573b72e8130042 to your computer and use it in GitHub Desktop.
Save dimitardanailov/dada25573b72e8130042 to your computer and use it in GitHub Desktop.
#!/bin/sh
# Source: http://www.fullybaked.co.uk/articles/installing-latest-vim-on-centos-from-source
yum groupinstall 'Development tools'
yum install ncurses 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 vim74
./configure --prefix=/usr --with-features=huge --enable-rubyinterp --enable-pythoninterp --enable-luainterp
make && make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment