You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.0 KiB
42 lines
1.0 KiB
#
|
|
# 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
|
|
|
|
export EDITOR=vim
|
|
export VISUAL=vim
|
|
|
|
unsetopt correct # Don't autocorrect
|
|
setopt no_nomatch # Pass bad matches on
|
|
setopt no_share_history
|
|
|
|
bindkey "\ep" history-beginning-search-backward
|
|
bindkey "\en" history-beginning-search-forward
|
|
|
|
alias be='bundle exec'
|
|
alias tat='tmux new-session -As `basename $PWD | sed s/\\\./_/`'
|
|
alias plz='sudo'
|
|
|
|
function eject { command hdiutil eject `df | grep Volumes | grep -i "$@" | ruby -ne 'puts $_[/^[^ ]*/]'`; }
|
|
|
|
if command -v brew &> /dev/null; then
|
|
if [[ -s `brew --prefix`/share/chruby/chruby.sh ]]; then
|
|
source `brew --prefix`/share/chruby/chruby.sh
|
|
source `brew --prefix`/share/chruby/auto.sh
|
|
chruby ruby
|
|
fi
|
|
fi
|
|
|
|
if command -v direnv &> /dev/null; then
|
|
eval "$(direnv hook zsh)"
|
|
fi
|
|
|
|
[[ -s "$HOME/.zshrc.local" ]] && . "$HOME/.zshrc.local"
|