zsh / .zshrcon commit Merge branch 'larry' of ssh://charles/tank/andrew/code/dotfiles into larry (8bb0202)
   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 PATH="/usr/local/opt/gnuplot@4/bin:$PATH"
   6export GOPATH=$HOME/.go
   7export PATH="/usr/local/opt/python@3.7/bin:$PATH"
   8export PATH=$GOPATH:$GOPATH/bin:$PATH
   9export PATH=/opt/local/bin:/opt/local/sbin:$PATH
  10export ZSH=$HOME/.oh-my-zsh
  11
  12# ---
  13# Keybinds
  14# ---
  15
  16# 14/05/19 All terminal keybinds are now set in iTerm on larry
  17# To modify, go to Preferences > Profiles > Keys
  18
  19# Use vi mode
  20bindkey -v
  21
  22# ---
  23# Behaviour
  24# ---
  25
  26#Allow bash-style comments
  27setopt interactivecomments
  28
  29export EDITOR='vim'
  30
  31# Timestamp in history command ("mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd")
  32HIST_STAMPS="dd.mm.yyyy"
  33
  34DISABLE_UNTRACKED_FILES_DIRTY="true"
  35
  36alias cat=bat
  37
  38# ---
  39# Appearance
  40# ---
  41ZSH_THEME="custom"
  42COMPLETION_WAITING_DOTS="true"
  43
  44# plugins can be found in ~/.oh-my-zsh/plugins/*
  45plugins=(git)
  46
  47source $ZSH/oh-my-zsh.sh
  48
  49<<<<<<< HEAD
  50# ---
  51# Aliases
  52# ---
  53alias preview='open -a preview'
  54alias chromium='open -a Google\ Chrome'
  55alias repo="~/scripts/git-repo/repo"