From e8f966e608a68f4aa1b2c2ff602f997a597bfdff Mon Sep 17 00:00:00 2001 From: Jidbo Date: Tue, 13 Nov 2018 16:41:58 +0100 Subject: [PATCH] add setup.sh --- setup.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 setup.sh diff --git a/setup.sh b/setup.sh new file mode 100644 index 0000000..c678172 --- /dev/null +++ b/setup.sh @@ -0,0 +1,18 @@ +#!/usr/bin/sh + +# remove all current dotfiles +rm -f ~/.zshrc +rm -f ~/.vimrc +rm -rf ~/.vim + +# create symbolic links to dotfiles +ln -s ~/.dotfiles/.vimrc ~/.vimrc +ln -s ~/.dotfiles/.zshrc ~/.zshrc +ln -s ~/.dotfiles/.vim ~/.vim + +# install vundle +git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim + +# next steps: +# - chage oh-my-zsh home directory +# - install Vundle plugins from inside vim :PluginInstall