Skip to content

Instantly share code, notes, and snippets.

@ara-ta3
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ara-ta3/c5046bcde7aa04d42571 to your computer and use it in GitHub Desktop.
Save ara-ta3/c5046bcde7aa04d42571 to your computer and use it in GitHub Desktop.
Install Vim 7.4 Script
#! /bin/sh
yum install -y gcc git mercurial ncurses-devel lua lua-devel
cd /usr/local/src
hg clone https://vim.googlecode.com/hg/ vim
cd /usr/local/src/vim
./configure --enable-multibyte \
--with-features=huge \
--disable-selinux \
--prefix=/usr/local \
--enable-luainterp=yes \
--with-lua-prefix=/usr
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment