Last active
December 17, 2015 22:58
-
-
Save ahmadvaroqua/5685479 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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