zsh / .zshrcon commit add path for macports (b357ba7)
   1export PATH=$HOME/scripts:/usr/local/bin:$PATH
   2export PATH=/usr/local/opt/grep/libexec/gnubin:$PATH
   3export PATH=/Users/andrew/Library/Python/3.7/bin:$PATH
   4export PATH=/Users/andrew/scripts:$PATH
   5export GOPATH=$HOME/.go
   6export PATH=$GOPATH:$GOPATH/bin:$PATH
   7export PATH=/opt/local/bin:/opt/local/sbin:$PATH
   8export ZSH=$HOME/.oh-my-zsh
   9
  10# ---
  11# Keybinds
  12# ---
  13
  14# Ctrl+Bksp deletes preceding word
  15bindkey '^H' backward-delete-word
  16
  17# Ctrl+Del deletes succeeding word
  18bindkey '^[[3^' delete-word
  19
  20# Ctrl+left arrow moves cursor one word left
  21bindkey '^[Od' backward-word
  22
  23# Ctrl+right arrow moves cursor one word right
  24bindkey '^[Oc' forward-word
  25
  26# Custom delimeters for delete-word
  27WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'
  28
  29# ---
  30# Behaviour
  31# ---
  32
  33#Allow bash-style comments
  34setopt interactivecomments
  35
  36export EDITOR='vim'
  37
  38# Timestamp in history command ("mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd")
  39HIST_STAMPS="dd.mm.yyyy"
  40
  41DISABLE_UNTRACKED_FILES_DIRTY="true"
  42
  43alias cat=bat
  44
  45# ---
  46# Appearance
  47# ---
  48ZSH_THEME="agnoster"
  49COMPLETION_WAITING_DOTS="true"
  50
  51# plugins can be found in ~/.oh-my-zsh/plugins/*
  52plugins=(git)
  53
  54source $ZSH/oh-my-zsh.sh
  55
  56# ---
  57# Aliases
  58# ---
  59alias preview='open -a preview'
  60alias chromium='open -a Google\ Chrome'