dotfiles/zshrc
Thomas Forgione 0fa53b8b95
Adds options for update check
If the env variable UPDATE_CHECK is set to "daily", "weekly" or
"monthly", there will be a message if you're late on your update.

If the env variable UPDATE_CHECK_ALWAYS is set to "true", you will get a
message telling you that your system is up to date.
2019-02-01 15:18:33 +01:00

26 lines
560 B
Bash

# ~/.zshrc
# Path to the dotfiles
DOTFILES=$HOME/.config/dotfiles
DISABLE_AUTO_UPDATE="true"
# Path to your oh-my-zsh configuration
ZSH=$HOME/.config/oh-my-zsh
ZSH_CUSTOM=$HOME/.config/dotfiles/zsh/oh-my-zsh
ZSH_THEME="laptop"
if [ -f $DOTFILES/zsh/env.zsh ]; then
source $DOTFILES/zsh/env.zsh
fi
source $DOTFILES/zsh/config.zsh
source $DOTFILES/zsh/path.zsh
source $DOTFILES/zsh/exports.zsh
source $DOTFILES/zsh/aliases.zsh
source $DOTFILES/zsh/functions.zsh
if [ -f $DOTFILES/zsh/extraconfig.zsh ]; then
source $DOTFILES/zsh/extraconfig.zsh
fi