Skip to content

Instantly share code, notes, and snippets.

@felixSchl
Last active May 12, 2018 11:41
Show Gist options
  • Save felixSchl/4baf1e560a13f2d2cf9b14d191d5ab49 to your computer and use it in GitHub Desktop.
Save felixSchl/4baf1e560a13f2d2cf9b14d191d5ab49 to your computer and use it in GitHub Desktop.
Installing Vim 8 on Ubuntu 16.04 LTS
# This build vim from sources with lua, python and ruby enabled as well as support for
# the system clipboard.
#
# Preparation
#
# 1. Download vim tarball from vim.org, extract and cd
# 2. Enable "Source Code" in Software Center under "Software & Updates".
# This is required for `sudo apt-get build-dep` to work.
sudo apt-get build-dep vim &&
./configure \
--enable-pythoninterp \
--enable-luainterp \
--enable-rubyinterp \
--enable-gui=gtk \
--with-x \
--enable-fail-if-missing &&
make &&
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment