dotfiles/zshrc

27 lines
541 B
Bash
Raw Normal View History

2016-08-22 12:04:24 +02:00
# ~/.zshrc
# Path to the dotfiles
DOTFILES=$HOME/.config/dotfiles
2017-01-23 09:14:38 +01:00
DISABLE_AUTO_UPDATE="true"
2016-08-22 12:04:24 +02:00
# Path to your oh-my-zsh configuration
2016-12-08 22:23:07 +01:00
ZSH=$HOME/.config/oh-my-zsh
2016-08-22 12:04:24 +02:00
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
2016-08-22 12:04:24 +02:00
source $DOTFILES/zsh/config.zsh
2017-10-20 10:24:56 +02:00
source $DOTFILES/zsh/path.zsh
2016-12-02 09:16:54 +01:00
source $DOTFILES/zsh/exports.zsh
2016-08-22 12:04:24 +02:00
source $DOTFILES/zsh/aliases.zsh
2017-12-21 10:35:22 +01:00
if [ -f $DOTFILES/zsh/extraconfig.zsh ]; then
source $DOTFILES/zsh/extraconfig.zsh
fi
2019-02-11 17:40:33 +01:00
update startup