-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.zshrc
More file actions
22 lines (17 loc) · 714 Bytes
/
.zshrc
File metadata and controls
22 lines (17 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# ~/.zshrc: Initialization for zsh interactive shell sessions.
# This is minimal for the time being, I'm not a regular zsh user.
# See `man zshcontrib` for this silliness.
unalias run-help
autoload run-help
alias help=run-help # bash-like for builtins, easier to type
# This is correct for default macOS system installation currently.
# run-help is still useful if the var isn't set. Will generalize later.
if [ -d /usr/share/zsh/5.3/help ]; then
HELPDIR=/usr/share/zsh/5.3/help
fi
if [ -d /usr/local/share/zsh-completions ]; then
fpath=(/usr/local/share/zsh-completions $fpath)
fi
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# added by travis gem
[ -f ~/.travis/travis.sh ] && source ~/.travis/travis.sh