dotfiles/Makefile

29 lines
582 B
Makefile
Raw Permalink Normal View History

2013-01-15 16:22:39 +00:00
install: install-vim install-git install-bash install-colordiff install-hg \
install-mutt
install-vim:
rm -rf ~/.vim ~/.vimrc
ln -s `pwd`/.vim ~/.vim
ln -s ~/.vim/vimrc ~/.vimrc
install-git:
rm -f ~/.gitconfig
ln -s `pwd`/.gitconfig ~/.gitconfig
install-bash:
2014-03-03 03:00:58 +00:00
rm -f ~/.bash_profile ~/.inputrc
ln -s `pwd`/.bash_profile ~/.bash_profile
2014-03-03 03:00:58 +00:00
ln -s `pwd`/.inputrc ~/.inputrc
install-colordiff:
rm -f ~/.colordiffrc
ln -s `pwd`/.colordiffrc ~/.colordiffrc
install-hg:
rm -f ~/.hgrc
ln -s `pwd`/.hgrc ~/.hgrc
2013-01-15 16:22:39 +00:00
install-mutt:
rm -f ~/.muttrc
ln -s `pwd`/.muttrc ~/.muttrc