Skip to content

Instantly share code, notes, and snippets.

@CristianLlanos
Last active March 20, 2016 08:54
Show Gist options
  • Save CristianLlanos/982548325f696bf4ca43 to your computer and use it in GitHub Desktop.
Save CristianLlanos/982548325f696bf4ca43 to your computer and use it in GitHub Desktop.
Install Vim + GVim

Install Vim + Gvim

$ git clone https://github.com/vim/vim.git
$ cd vim/src
$ sudo apt-get build-dep vim

# Use this command if you've compiled vim before
$ make distclean
$ make clean

$ ./configure --with-compiledby="Cristian Llanos <cristian@cinepapaya.com>" \
$ --with-features=huge \
$ --enable-gui=auto \
$ --with-x \
$ --enable-rubyinterp \
$ --with-ruby-command=/usr/bin/ruby \
$ --enable-perlinterp \
$ --enable-pythoninterp --with-python-config-dir=/usr/lib/python2.7/config \
$ --enable-fontset \
$ --enable-cscope \
$ --enable-gtk2-check \
$ --enable-gnome-check

$ make
$ sudo make install

Resources

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