Skip to content

Instantly share code, notes, and snippets.

@bryceknz
bryceknz / .zshrc
Last active November 19, 2020 12:44
.zshrc customisations
# ZSH config
export ZSH="/Users/brycekehoe/.oh-my-zsh"
# ZSH_THEME="agnoster"
ZSH_THEME="robbyrussell" # Set theme
plugins=(git) # Load plugins
ZSH_DISABLE_COMPFIX="true" # Skip verification of insecure directories
source $ZSH/oh-my-zsh.sh # Load oh-my-zsh
# Make directory and change into it
mkdircd() { mkdir "$1" && cd "$1" }