1
2022-02-22 17:19:37 -05:00

17 lines
477 B
Bash

# There are some important env vars that need to exist
export ZSH="$HOME/.oh-my-zsh"
export EWCONFIG_ROOT="$HOME/.config/ewconfig"
# Load zsh-specific stuff
plugins=(zsh-autosuggestions)
source $ZSH/oh-my-zsh.sh
# Load my custom prompt and macros
. $EWCONFIG_ROOT/configs/zsh/prompt.sh
. $EWCONFIG_ROOT/configs/zsh/macros.sh
# Load per-host configuration
if [ -f $EWCONFIG_ROOT/configs/zsh/by_host/$HOSTNAME.sh ]; then
. $EWCONFIG_ROOT/configs/zsh/by_host/$HOSTNAME.sh
fi