Skip to content

Instantly share code, notes, and snippets.

@hamaco
Created March 27, 2012 18:38
Show Gist options
  • Save hamaco/2218942 to your computer and use it in GitHub Desktop.
Save hamaco/2218942 to your computer and use it in GitHub Desktop.
Vim install
#!/bin/sh
./configure \
--prefix=$HOME/app/vim-7.3 \
--disable-darwin \
--disable-selinux \
--enable-fontset \
--enable-gnome-check \
--enable-gui=gtk2 \
--enable-multibyte \
--enable-perlinterp \
--enable-pythoninterp \
--enable-rubyinterp \
--with-vim-name=vim \
--with-compiledby="hamaco <hamanaka.kazuhiro@gmail.com>" \
--with-features=huge \
--with-tlib=ncurses
make && make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment