shell-scripts/home_zsh/.zshrc

23 lines
473 B
Bash
Raw Normal View History

2018-09-15 14:57:57 -05:00
#
# Executes commands at the start of an interactive session.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# Source Prezto.
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
fi
2017-07-28 19:32:04 -05:00
# Load aliases
if [ -f ~/.zsh/zshalias ]; then
source ~/.zsh/zshalias
else
print "404: ~/.zsh/zshalias not found."
fi
2018-09-15 14:57:57 -05:00
# Necessary for loading custom prezto theme
autoload -Uz promptinit
promptinit
prompt paradox