Skip to content

Instantly share code, notes, and snippets.

@delbetu
Last active March 9, 2016 16:24
Show Gist options
  • Save delbetu/09c215dfda654ce524e7 to your computer and use it in GitHub Desktop.
Save delbetu/09c215dfda654ce524e7 to your computer and use it in GitHub Desktop.
My vim installation
  cd ~
  wget ftp://ftp.vim.org/pub/vim/unix/vim-7.4.tar.bz2
  tar -xvfj vim-7.4.tar.bz2
  cd vim74/src
  make clean
  make distclean
  sudo make uninstall
  ./configure --prefix=/usr/local \
              --enable-rubyinterp \
              --with-ruby-command=/usr/bin/ruby \
              --enable-pythoninterp=yes \
              --with-python-config-dir=/usr/lib/python2.7/config-x86_64-linux-gnu \
              --with-features=huge
  make
  sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment