Skip to content

Instantly share code, notes, and snippets.

@pokev25
Forked from juxtin/vim74centos
Last active November 4, 2016 05:02
Show Gist options
  • Save pokev25/da6cf2e6f6a2dfd39a3f to your computer and use it in GitHub Desktop.
Save pokev25/da6cf2e6f6a2dfd39a3f to your computer and use it in GitHub Desktop.
Compile Vim 7.4 on Centos and install my vimrc
#!/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
#!/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
@pokev25
Copy link
Author

pokev25 commented Oct 19, 2016

//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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment