commit 34086462f61dd8856a07a1d3210e28feb7f069c0 (patch) parent 370134eae81072777b2a82acd364783736c38c0a Author: Alexander Karle <akarle@umass.edu> Date: Wed, 27 Dec 2017 14:47:42 -0500 First attempt at a setup script Diffstat:
A | setup.sh | | | 15 | +++++++++++++++ |
1 file changed, 15 insertions(+), 0 deletions(-)
diff --git a/setup.sh b/setup.sh @@ -0,0 +1,15 @@ +# After cloning dotfiles into ~/git/dotfiles +# this file sets up vimrc and tmux.conf + +# Set up vimrc +VIMHOME="~/.vim" +if [ ! -d $VIMHOME ]; then + echo "Making ~/.vim" + mkdir $VIMHOME +fi + +ln -s ~/git/dotfiles/vimrc ~/.vimrc +ln -s ~/git/dotfiles/theme.vim ~/.vim/theme.vim +ln -s ~/git/dotfiles/plugins.vim ~/.vim/plugins.vim +ln -s ~/git/dotfiles/pluginsettings.vim ~/.vim/pluginsettings.vim +ln -s ~/git/dotfiles/keys.vim ~/.vim/keys.vim