Created
January 29, 2020 20:28
-
-
Save olafkotur/8f5a8936fc0a24c92596d8b6bcb7a1be to your computer and use it in GitHub Desktop.
Configuration for zshrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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