[NEW] Bin dir

This commit is contained in:
Quentin Godefroid 2017-11-21 10:27:50 +01:00
parent 6afdcf0e9b
commit c5c1de74c9
7 changed files with 294 additions and 11 deletions

9
bin/initenv Normal file
View file

@ -0,0 +1,9 @@
#!/bin/bash
for _FILE in .bashrc bin .vim .vimrc .zshrc
do
if [ ! -L $HOME/$_FILE ]; then
ln -s "$HOME/dotfiles/$_FILE" "$HOME/$_FILE"
fi
done
rsync -av "$HOME/dotfiles/.config" "$HOME/.config"