prezto/runcoms/zshrc
Mike Cravey 74b654e769 Customizing zprezto to my tastes
- Removing logout and login signatures/messages
- Sets zprezto to run under my dotfiles
- Adds zsh completion script
2016-06-10 00:45:39 +01:00

32 lines
504 B
Bash

#!/usr/bin/env zsh
#
# Executes commands at the start of an interactive session.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# Source Prezto.
if [[ -s "$DOTFILES/zprezto/init.zsh" ]]; then
source "$DOTFILES/zprezto/init.zsh"
fi
# Customize to your needs...
source_if_present() {
if [ -f "$1" ]; then
. "$1"
fi
}
# Reload profile
alias reload!=". $HOME/.zshrc"
path=(
$HOME/bin
$DOTFILES/bin
/usr/local/opt/coreutils
$path
)
source_if_present "$DOTFILES/system/load.sh"