Created
March 27, 2012 18:38
-
-
Save hamaco/2218942 to your computer and use it in GitHub Desktop.
Vim install
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/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 <[email protected]>" \ | |
--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