Categories: Uncategorized

[vim][CentOS]Install vim7.3 from source to under the home directory

Install

$wget http://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2
$tar xjvf vim-7.3.tar.bz2
-----------------------------
When you want to apply patches, please do following commands
-----------------------------
$mkdir vim73/patches
$cd vim73/patches
$wget http://ftp.vim.org/pub/vim/patches/7.3/7.3.{001..754}
$cd ..
$cat patches/7.3.* | patch -p0
---------------------------
$mkdir ~/vim
$./configure --prefix=/home/user/vim --enable-multibyte --with-features=huge
$make
$make install
zuqqhi2