prezto/runcoms/zshrc
2015-01-05 15:53:54 -08:00

17 lines
399 B
Bash

#
# 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
# Customize to your needs...
# Source custom configuration
if [[ -s "${ZDOTDIR:-$HOME}/zshrc.local" ]]; then
source "${ZDOTDIR:-$HOME}/zshrc.local"
fi