.dotfiles/make_symlinks.sh

8 lines
349 B
Bash
Raw Normal View History

#!/bin/bash
2014-01-20 15:45:29 +00:00
test -f ../.zshrc || ln -sv .dotfiles/zshrc ../.zshrc
test -f ../.zsh_functions || ln -sv .dotfiles/zsh_functions ../.zsh_functions
test -f ../.vimrc || ln -sv .dotfiles/vimrc ../.vimrc
test -f ../.gitconfig || ln -sv .dotfiles/gitconfig ../.gitconfig
test -f ../.globalgitignore || ln -sv .dotfiles/globalgitignore ../.globalgitignore