-
-
Save pokev25/da6cf2e6f6a2dfd39a3f to your computer and use it in GitHub Desktop.
Compile Vim 7.4 on Centos and install my vimrc
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 python-devel lua-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-multibyte \ | |
--enable-rubyinterp \ | |
--enable-pythoninterp \ | |
--enable-luainterp | |
make && make install | |
vim --version |
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 python-devel lua-devel wget git -y | |
cd /usr/local/src | |
wget https://github.com/vim/vim/archive/v8.0.0055.tar.gz | |
tar -xzvf v8.0.0055.tar.gz | |
cd vim-8.0.0055 | |
./configure --prefix=/usr --with-features=huge \ | |
--enable-multibyte \ | |
--enable-rubyinterp \ | |
--enable-pythoninterp \ | |
--enable-luainterp | |
make && make install | |
vim --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
//CentOS 5.11 x86 with rvm ruby 1.9.3...remove rubyinterp
./configure --prefix=/usr --with-features=huge
--enable-multibyte
--enable-pythoninterp
--with-python-config-dir=/usr/lib/python2.4/config
--enable-luainterp