Created
July 31, 2013 18:12
-
-
Save zeekay/6124579 to your computer and use it in GitHub Desktop.
Install Vim 7.3 on CentOS.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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