度々ググってるので、メモっておく。 ※2014/05/29現在
# 必要なパッケージをインストール
yum -y install gcc python python-devel ncurses-devel python-setuptools perl-ExtUtils-Embed
# ソースとってくる
cd /usr/local/src
hg clone https://vim.googlecode.com/hg/ vim
# 更新
hg pull
hg update
./configure \
--prefix=/usr/local/vim \
--enable-fail-if-missing \
--enable-fontset \
--enable-perlinterp \
--enable-pythoninterp \
--enable-cscope \
--enable-multibyte \
--with-x=no \
--disable-gui \
--disable-xim \
--with-features=huge \
--disable-selinux \
--disable-gpm \
--disable-darwin
make && make install