Last active
November 15, 2016 12:38
-
-
Save codeasashu/ee98ad7d270a9f8a10713c3353b06709 to your computer and use it in GitHub Desktop.
Install my own vim configuration
This file contains hidden or 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
DIRECTORY='.vim_runtime' | |
cd ~ | |
if [ -d "$DIRECTORY" ]; then | |
echo "Deleting old vim runtime configurations..." | |
rm -rf "$DIRECTORY" | |
fi | |
echo "Done" | |
echo "Getting latest configs..." | |
git clone https://github.com/ashutosh2k12/vimrc.git ~/.vim_runtime && sh ~/.vim_runtime/install_awesome_vimrc.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment