Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dohsimpson/62b4bf6b028138990bb5e3fb0c0f4093 to your computer and use it in GitHub Desktop.
Save dohsimpson/62b4bf6b028138990bb5e3fb0c0f4093 to your computer and use it in GitHub Desktop.
Install VIM8 from source (Unix)
#!/bin/bash
cd /tmp/
wget https://github.com/vim/vim/archive/v8.1.1244.tar.gz
tar xzf v8.1.1244.tar.gz
cd vim-8.1.1244/
./configure --enable-perlinterp --enable-rubyinterp --enable-python3interp --enable-luainterp
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment