Last active
August 7, 2018 22:29
-
-
Save slog2/af5120ac65959fb0b999033c76fe91fe to your computer and use it in GitHub Desktop.
upgrade to vim 7.4 on CentOS 5.x
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/bash | |
yum groupinstall 'Development tools' -y | |
yum install ncurses ncurses-devel wget git -y | |
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 | |
make && make install | |
vim --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment