mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
14 lines
316 B
Bash
Executable file
14 lines
316 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
DOTFILES_PATH="${0:a:h}"
|
|
cd "$DOTFILES_PATH" || exit 1
|
|
ZSH_DOTFILES="$DOTFILES_PATH/zsh"
|
|
|
|
source "$ZSH_DOTFILES/functions.zsh"
|
|
|
|
git pull --rebase --stat origin master
|
|
git submodule update --init --recursive --remote --progress
|
|
|
|
ZPLG_SKIP_LOADING=1
|
|
source "$ZSH_DOTFILES/plugins.zsh"
|
|
zplg-upgrade
|