16 lines
304 B
Makefile
16 lines
304 B
Makefile
|
all: pull install
|
||
|
|
||
|
pull:
|
||
|
git pull
|
||
|
|
||
|
install: antigen source
|
||
|
|
||
|
source:
|
||
|
cp ~/.dotfiles/.aliases ~/.aliases
|
||
|
cp ~/.dotfiles/.zshrc ~/.zshrc
|
||
|
cp ~/.loadenv.sh ~/.loadenv.sh
|
||
|
cp ~/.dotfiles/.gitconfig ~/.gitconfig
|
||
|
cp ~/.dotfiles/.vimrc ~/.vimrc
|
||
|
|
||
|
antigen:
|
||
|
git clone https://github.com/zsh-users/antigen.gitl
|