.dotfiles/make_symlinks.sh

13 lines
470 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
2015-11-17 11:10:47 +00:00
if ! test -f ../.config/nvim/init.vim
then
mkdir -vp ../.config/nvim
ln -sv ~/.vimrc ../.config/nvim/init.vim
fi