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
[ | |
{ | |
"name": "Kind: Bug", | |
"color": "fc2929" | |
}, | |
{ | |
"name": "Kind: Discussion", | |
"color": "006b75" | |
}, | |
{ |
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
# Hide/Show hidden files in finder | |
alias showfiles='defaults write com.apple.finder AppleShowAllFiles YES; killAll Finder' | |
alias hidefiles='defaults write com.apple.finder AppleShowAllFiles NO; killAll Finder' | |
# GIT ALIASES | |
# https://raw.githubusercontent.com/brightbit/dotfiles/master/shell/aliases/git.sh | |
# -------------------------------------------------------------------------------- | |
type compdef >/dev/null 2>&1 && compdef hub=git | |
type hub >/dev/null 2>&1 && alias git='hub' |