24 lines
495 B
Makefile
24 lines
495 B
Makefile
all: pull install
|
|
|
|
pull:
|
|
git pull
|
|
|
|
install: antigen source fish
|
|
|
|
source: fishcfg
|
|
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
|
|
|
|
fishcfg:
|
|
mkdir -p ~/.config/fish
|
|
cp ./fish/config.fish ~/.config/fish/config.fish
|
|
cp starship.toml ~/.config/starship.toml
|
|
|
|
antigen:
|
|
git clone https://github.com/zsh-users/antigen.git
|
|
|