Last active
August 31, 2016 03:37
-
-
Save DeanThompson/3b96121a95bff1bbe92a to your computer and use it in GitHub Desktop.
Shell script to setup vim configure.
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/bash | |
cd ~ | |
# Backup your own vim files. | |
mv .vim .vim.bak | |
mv .vimrc .vimrc.bak | |
# Clone this repository | |
git clone https://github.com/DeanThompson/vimfiles.git .vim | |
# Create link for .vimrc. | |
ln -s .vim/vimrc .vimrc | |
# Install the plugins (This step may take some time. Go have yourself a cup of tea). | |
.vim/install.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment