dotfiles/upgrade.zsh

15 lines
316 B
Bash
Raw Normal View History

2018-12-03 08:31:41 +00:00
#!/usr/bin/env zsh
2019-07-05 21:19:55 +00:00
DOTFILES_PATH="${0:a:h}"
2018-12-03 08:31:41 +00:00
cd "$DOTFILES_PATH" || exit 1
2019-07-05 21:19:55 +00:00
ZSH_DOTFILES="$DOTFILES_PATH/zsh"
2018-08-23 17:35:40 +00:00
source "$ZSH_DOTFILES/functions.zsh"
2018-08-23 17:35:40 +00:00
git pull --rebase --stat origin master
2018-12-22 22:36:10 +00:00
git submodule update --init --recursive --remote --progress
2018-12-03 08:31:41 +00:00
ZPLG_SKIP_LOADING=1
2019-07-05 21:19:55 +00:00
source "$ZSH_DOTFILES/plugins.zsh"
2019-08-04 17:21:37 +00:00
zplg-upgrade