19 lines
368 B
Makefile
19 lines
368 B
Makefile
all: pull install
|
|
|
|
pull:
|
|
git pull origin main
|
|
|
|
install: antigen source
|
|
|
|
source:
|
|
cp ~/.dotfiles/.aliases ~/.aliases
|
|
cp ~/.dotfiles/.zshrc ~/.zshrc
|
|
cp ~/.dotfiles/.loadenv.sh ~/.loadenv.sh
|
|
cp ~/.dotfiles/.vimrc ~/.vimrc
|
|
cp ~/.dotfiles/.gitconfig ~/.gitconfig
|
|
cp ~/.dotfiles/.latexmkrc ~/.latexmkrc
|
|
|
|
antigen:
|
|
git clone https://github.com/zsh-users/antigen.git
|
|
|