Skip to content

Instantly share code, notes, and snippets.

@romedawg
Forked from fundon/vim_centos.sh
Last active December 18, 2015 23:29
Show Gist options
  • Save romedawg/5861753 to your computer and use it in GitHub Desktop.
Save romedawg/5861753 to your computer and use it in GitHub Desktop.
#!/bin/bash
# on centos minimal
yum install gcc
yum install make
yum install ncurses-devel
yum install lua lua-devel
yum install ruby ruby-devel
yum install python python-devel
yum install perl perl-devel
yum groupinstall "development tools"
yum install MySQL-python
yum install python-virtualenv
yum install python-virtualenvwrapper
# vim7.3
./configure --disable-selinux \
--enable-luainterp \
--enable-perlinterp \
--enable-pythoninterp \
--enable-python3interp \
--enable-tclinterp \
--enable-rubyinterp \
--enable-multibyte \
--disable-gui \
--with-features=huge \
[email protected]
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment