14 lines
258 B
Bash
Executable file
14 lines
258 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
cd $HOME/dotfiles/
|
|
{
|
|
echo "${CYAN}Updating submodules..${NC}" &&
|
|
git submodule update --init --recursive &&
|
|
echo "${CYAN}Pulling down submodules..${NC}" &&
|
|
git pull --recurse-submodule
|
|
}
|
|
|
|
stow dotfiles/
|
|
stow zsh/
|
|
|
|
exec zsh
|