32 lines
724 B
Makefile
32 lines
724 B
Makefile
all: pull install
|
|
|
|
pull:
|
|
git pull
|
|
|
|
install: antigen source emacs nvim
|
|
|
|
source: fish
|
|
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
|
|
|
|
|
|
fish:
|
|
mkdir -p ~/.config/fish
|
|
cp ./.config/fish/config.fish ~/.config/fish/config.fish
|
|
cp ./.aliases.fish ~/.aliases.fish
|
|
cp ./.config/starship.toml ~/.config/starship.toml
|
|
|
|
nvim:
|
|
git clone ssh://gitea@forge.chapril.org:222/sortion/nvim.conf ~/.config/nvim/
|
|
|
|
emacs:
|
|
git clone ssh://gitea@forge.chapril.org:222/sortion/.emacs.d.git ~/.emacs.d/
|
|
|
|
antigen:
|
|
git clone https://github.com/zsh-users/antigen.git
|
|
|