2018-10-17 22:38:37 -04:00
|
|
|
#!/usr/bin/bash
|
|
|
|
|
2019-04-27 17:08:33 -04:00
|
|
|
# for f in $(ls --ignore="*.sh" --ignore="*.md" --ignore="*.css")
|
|
|
|
# do
|
|
|
|
# # echo $f
|
|
|
|
# ln -s "$(pwd)/$f" "$HOME/.${f##*/}"
|
|
|
|
# done
|
2018-10-18 05:59:19 -04:00
|
|
|
|
2019-04-27 17:08:33 -04:00
|
|
|
|
2019-04-27 17:19:35 -04:00
|
|
|
ln -s "$(pwd)/bashrc" "$HOME/.bashrc"
|
|
|
|
ln -s "$HOME/.bashrc" "$HOME/.bash_profile"
|
|
|
|
ln -s "$(pwd)/tmux.conf" "$HOME/.tmux.conf"
|
|
|
|
ln -s "$(pwd)/vimrc" "$HOME/.vimrc"
|
|
|
|
ln -s "$HOME/.vimrc" "$HOME/.config/nvim/init.vim"
|
|
|
|
ln -s "$(pwd)/gtk.css" "$HOME/.config/gtk-3.0/gtk.css"
|
|
|
|
ln -s "$(pwd)/config.conf" "$HOME/.config/neofetch/config.conf"
|