Skip to content

Instantly share code, notes, and snippets.

@carolynvs
Last active January 13, 2019 17:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carolynvs/8a10d2d62e9bc4df45b76e19a8ab5d0b to your computer and use it in GitHub Desktop.
Save carolynvs/8a10d2d62e9bc4df45b76e19a8ab5d0b to your computer and use it in GitHub Desktop.
Setup ALL THE THINGS!
  • brew install git

  • brew tap johanhaleby/kubetail && brew install kubetail or brew install --HEAD kubetail

  • brew install findutils gives me gfind, which supports all the args

  • brew install bash-completion gives me autocomplete for stuff like kubectl and minikube

  • Upgrade Bash so that I have access to more commands, flags and to get bash completion working for kubectl

    brew install bash
    sudo bash -c 'echo /usr/local/bin/bash >> /etc/shells'
    chsh -s /usr/local/bin/bash
    
  • git autocompletion

    [ -f /usr/local/etc/bash_completion ] && source /usr/local/etc/bash_completion
    
  • git emoji support in git log

    git config --global core.pager 'less --raw-control-chars'
    
  • keybase

    brew install gpg
    brew tap caskroom/cask
    brew cask install keybase
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment