You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
283 B
13 lines
283 B
8 years ago
|
ln -s $(pwd)/global_gitignore ~/.global_gitignore
|
||
|
ln -s $(pwd)/ocamlinit ~/.ocamlinit
|
||
|
ln -s $(pwd)/tmux.conf ~/.tmux.conf
|
||
|
ln -s $(pwd)/vimrc ~/.vimrc
|
||
|
ln -s $(pwd)/zshrc ~/.zshrc
|
||
|
|
||
|
if [[ -d "~/.config" ]]
|
||
|
then
|
||
|
cp -R $(pwd)/config/* ~/.config/
|
||
|
else
|
||
|
ln -s $(pwd)/config ~/.config
|
||
|
fi
|