Skip to content

Instantly share code, notes, and snippets.

@DeanThompson
Last active August 31, 2016 03:37
Show Gist options
  • Save DeanThompson/3b96121a95bff1bbe92a to your computer and use it in GitHub Desktop.
Save DeanThompson/3b96121a95bff1bbe92a to your computer and use it in GitHub Desktop.
Shell script to setup vim configure.
#!/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