dotfiles/install.sh

15 lines
398 B
Bash
Raw Normal View History

2018-10-17 22:38:37 -04:00
#!/usr/bin/bash
# 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: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"