export PATH=$HOME/scripts:/usr/local/bin:$PATH export PATH=/usr/local/opt/grep/libexec/gnubin:$PATH export PATH=/Users/andrew/Library/Python/3.7/bin:$PATH export PATH=/Users/andrew/scripts:$PATH export GOPATH=$HOME/.go export PATH=$GOPATH:$GOPATH/bin:$PATH export PATH=/opt/local/bin:/opt/local/sbin:$PATH export ZSH=$HOME/.oh-my-zsh # --- # Keybinds # --- # 14/05/19 All terminal keybinds are now set in iTerm on larry # To modify, go to Preferences > Profiles > Keys # Use vi mode bindkey -v # --- # Behaviour # --- #Allow bash-style comments setopt interactivecomments export EDITOR='vim' # Timestamp in history command ("mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd") HIST_STAMPS="dd.mm.yyyy" DISABLE_UNTRACKED_FILES_DIRTY="true" alias cat=bat # --- # Appearance # --- ZSH_THEME="custom" COMPLETION_WAITING_DOTS="true" # plugins can be found in ~/.oh-my-zsh/plugins/* plugins=(git) source $ZSH/oh-my-zsh.sh # --- # Aliases # --- alias preview='open -a preview' alias chromium='open -a Google\ Chrome'