Skip to content

Instantly share code, notes, and snippets.

@saamalik
Created June 18, 2013 19:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saamalik/5808448 to your computer and use it in GitHub Desktop.
Save saamalik/5808448 to your computer and use it in GitHub Desktop.
Compile VIM under Cygwin
1. Install cygwin packages using setup.exe: gcc4, make, libncurses-devel, mercurial
2. hg clone https://vim.googlecode.com/hg/ vim && cd vim
3. ./configure --prefix=/usr/ \
--enable-gui=no \
--without-x \
--disable-nls \
--enable-multibyte \
--with-tlib=ncurses \
--enable-pythoninterp \
--enable-rubyinterp \
--with-ruby-command=/usr/bin/ruby \
--with-features=huge \
--enable-gui=no \
--without-x
4. make && make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment