Skip to content

Instantly share code, notes, and snippets.

@ahmadvaroqua
Last active December 17, 2015 22:58
Show Gist options
  • Save ahmadvaroqua/5685479 to your computer and use it in GitHub Desktop.
Save ahmadvaroqua/5685479 to your computer and use it in GitHub Desktop.
#!/bin/sh
# Install by running the following in your home directory:
# curl https://gist.github.com/ahmadvaroqua/5685479/raw/c678e82487ba37193389e658a5851231f1645ef7/Configure+Vim | sh
# curl http://bit.ly/install-av-vim | sh
# May need to actually install vim as well:
# sudo aptitude install vim
# Go to the home directory
cd ~
# Clone the vim settings
git clone https://github.com/ahmadvaroqua/vg-vim.git ~/.vim
# Set up some symlinks
ln -s ~/.vim/vimrc ~/.vimrc
ln -s ~/.vim/gvimrc ~/.gvimrc
# Now we have to update the submodules
cd ~/.vim
# Two step method
#git submodule init
#git submodule update
# OR in one line (for the last two git commands):
git submodule update --init
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment