Last active
August 15, 2017 02:50
-
-
Save Khalian/8a852283896aec4844990d01d395f652 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Mac specific stuff | |
alias rmDerivedData="rm -rf ~/Library/Developer/Xcode/DerivedData" | |
alias cdDerivedData="cd ~/Library/Developer/Xcode/DerivedData" | |
# FZF specific stuff | |
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh | |
export FZF_DEFAULT_OPTS='--height 40% --reverse --border' | |
alias tb="nc termbin.com 9999" | |
# Git specific stuff | |
alias gitlogpretty="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" | |
# Vim specific stuff | |
alias vimf="vim \$(fzf)" | |
alias nvmif="nvim \$(fzf)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment