forked from mathiasbynens/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
29 lines (21 loc) · 747 Bytes
/
.zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# Executes commands at the start of an interactive session.
#
# Authors:
# Sorin Ionescu <[email protected]>
#
# Source Prezto.
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
fi
# Customize to your needs...
bindkey -M viins '^r' history-incremental-search-backward
bindkey -M vicmd '^r' history-incremental-search-backward
export PATH="$HOME/.composer/vendor/bin:$PATH"
export EDITOR="vim"
export VISUAL="vim"
alias wpcreatesuperuser="wp user create mien [email protected] --role=administrator --user_pass=asdf"
alias simplemailserver="python -m smtpd -n -c DebuggingServer localhost:1025"
eval "$(pyenv init -)"
eval "$(docker-machine env)"
eval $(thefuck --alias)