Skip to content

Instantly share code, notes, and snippets.

@juxtin
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juxtin/d1d4c72f25a5a801ad8d to your computer and use it in GitHub Desktop.
Save juxtin/d1d4c72f25a5a801ad8d to your computer and use it in GitHub Desktop.
#!/bin/bash
sudo apt-get install git -y
cd /usr/local/src
wget ftp://ftp.vim.org/pub/vim/unix/vim-7.4.tar.bz2
tar -xjf vim-7.4.tar.bz2
cd vim74
./configure --prefix=/usr --with-features=huge --enable-rubyinterp --enable-pythoninterp
make && sudo make install
vim --version
cd ~ && git clone https://github.com/holguinj/vimrc.git --recurse-submodules
mv vimrc .vim
ln -s vimrc ~/.vimrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment