Skip to content

Instantly share code, notes, and snippets.

@olafkotur
Created January 29, 2020 20:28
Show Gist options
  • Save olafkotur/8f5a8936fc0a24c92596d8b6bcb7a1be to your computer and use it in GitHub Desktop.
Save olafkotur/8f5a8936fc0a24c92596d8b6bcb7a1be to your computer and use it in GitHub Desktop.
Configuration for zshrc
# Preferences
export ZSH="/Users/olafkotur/.oh-my-zsh"
# Plugins
ZSH_THEME="olafkotur"
plugins=(git tmux)
source $ZSH/oh-my-zsh.sh
# Alias: Directories
alias dev="cd && cd ~/Development"
# Alias: Tools
alias add="git status && git add . && git status"
alias git:clean="git branch | grep -v "master" | xargs git branch -D"
alias tmux:kill="tmux kill-session"
alias ssh:key="ssh-add ~/.ssh/*_rsa"
alias zip:here="zip -r -X Archive.zip *"
# Alias: Scripts
alias timesheet="node ~/Development/harvest/harvest.js"
alias rant="node ~/Development/rant/rant.js"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment