Last active
November 28, 2016 06:18
-
-
Save tsudot/e4e69263ea3156ae4c41465e5237d345 to your computer and use it in GitHub Desktop.
Setup vim
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
| #!/usr/bin/env bash | |
| echo "Removing existing vim and vimrc config." | |
| rm -rf ~/.vimrc | |
| rm -rf ~/.vim | |
| git clone https://github.com/tsudot/dotfiles | |
| echo "Copying cloned vim config." | |
| cd dotfiles/ | |
| mv dot-vimrc ~/.vimrc | |
| mv dot-vim/ ~/.vim | |
| cd .. | |
| echo "Deleting cloned repo" | |
| rm -rf dotfiles |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment