27 lines
541 B
Bash
27 lines
541 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
|
|
|
|
if [ -f $DOTFILES/zsh/extraconfig.zsh ]; then
|
|
source $DOTFILES/zsh/extraconfig.zsh
|
|
fi
|
|
|
|
update startup
|