1
2022-09-27 10:35:38 -04:00

21 lines
585 B
Bash

# There are some important env vars that need to exist
export EWCONFIG_ROOT="$HOME/.config/ewconfig"
# Load my custom prompt and macros
. $EWCONFIG_ROOT/configs/zsh/prompt.sh
. $EWCONFIG_ROOT/configs/zsh/macros.sh
. $EWCONFIG_ROOT/configs/zsh/keybinds.sh
. $EWCONFIG_ROOT/configs/zsh/autocomplete.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
# Show some host info
. $EWCONFIG_ROOT/configs/zsh/info.sh
# I always want my ~/bin to be in my PATH
export PATH="$HOME/bin:$PATH"