dotfiles/make-links.sh

26 lines
476 B
Bash
Raw Normal View History

2016-08-22 12:04:24 +02:00
#/bin/bash
DIRNAME=`dirname $0`
# make-link source target
function make_link {
2016-10-15 12:30:58 +02:00
2016-08-22 12:04:24 +02:00
rm -rf $HOME/$2 && ln -s $PWD/$DIRNAME/$1 $HOME/$2
2016-10-15 12:30:58 +02:00
echo `realpath $PWD/$DIRNAME/$1`:'->':`realpath $HOME/$2`
}
function main {
make_link zshrc .zshrc
make_link vimrc .vimrc
make_link ycm_extra_conf.py .vim/ycm_extra_conf.py
make_link init.vim .config/nvim/init.vim
make_link awesome .config/awesome
make_link gitconfig .gitconfig
2016-08-22 12:04:24 +02:00
}
2016-10-15 12:30:58 +02:00
main | column -t -s ':'