Files
dotfiles/profiles/base/.zshrc
Daniel Bauer 7fd50f3361 back to zim
2019-03-27 12:48:08 +01:00

30 lines
689 B
Bash

export ZIM_HOME=${ZDOTDIR:-${HOME}}/.zim
[[ -s ${ZIM_HOME}/init.zsh ]] && source ${ZIM_HOME}/init.zsh
if [ -z "$GMXRC" ]; then
GMXRC="/opt/gromacs-2018/bin/GMXRC.bash"
fi
source $GMXRC
# source $HOME/bin/antigen.zsh
# antigen init $HOME/.antigenrc
# source other dotfiles
source $HOME/.environment
if [ -f "$HOME/.environment.local" ]; then
source $HOME/.environment.local
fi
source $HOME/.aliases
source $HOME/.functions
# config specific to this machine
if [ -f $HOME/.zshrc_local ]; then
source $HOME/.zshrc_local
fi
# fasd autocompletion
eval "$(fasd --init auto)"
# marker
[[ -s "$HOME/.local/share/marker/marker.sh" ]] && source "$HOME/.local/share/marker/marker.sh"