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# 14/05/19 All terminal keybinds are now set in iTerm on larry
15# To modify, go to Preferences > Profiles > Keys
16
17# Use vi mode
18bindkey -v
19
20# ---
21# Behaviour
22# ---
23
24#Allow bash-style comments
25setopt interactivecomments
26
27export EDITOR='vim'
28
29# Timestamp in history command ("mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd")
30HIST_STAMPS="dd.mm.yyyy"
31
32DISABLE_UNTRACKED_FILES_DIRTY="true"
33
34alias cat=bat
35
36# ---
37# Appearance
38# ---
39ZSH_THEME="custom"
40COMPLETION_WAITING_DOTS="true"
41
42# plugins can be found in ~/.oh-my-zsh/plugins/*
43plugins=(git)
44
45source $ZSH/oh-my-zsh.sh
46
47# ---
48# Aliases
49# ---
50alias preview='open -a preview'
51alias chromium='open -a Google\ Chrome'