24 lines
796 B
Bash
24 lines
796 B
Bash
# Matthew Dillon
|
|
# matthewrdillon@gmail.com
|
|
#
|
|
# source Prezto.
|
|
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
|
|
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
|
|
fi
|
|
|
|
# shortcuts
|
|
alias mailserver="sudo python -m smtpd -n -c DebuggingServer localhost:25"
|
|
alias mongod="mongod --config /usr/local/etc/mongod.conf"
|
|
alias postgres="postgres -D /usr/local/var/postgres"
|
|
alias venv="source venv/bin/activate"
|
|
alias devenv="deactivate"
|
|
alias q="source activate q2dev"
|
|
alias i="ipython3"
|
|
|
|
BASE16_SHELL=$HOME/.config/base16-shell/
|
|
[ -n "$PS1" ] && [ -s $BASE16_SHELL/profile_helper.sh ] && eval "$($BASE16_SHELL/profile_helper.sh)"
|
|
|
|
alias tmux="TERM=xterm-256color tmux"
|
|
|
|
# Backup shortcuts
|
|
alias back_things_up="rsync_tmbackup.sh $HOME /Volumes/field_on_fire/$HOST $HOME/.dotfiles/rsync_excludes.txt"
|