Stuff I find interesting

Mac OS CLI

WIP

Brew: https://brew.sh/

oh my zsh: https://ohmyz.sh/

zshrc:

plugins=(
        git
        github
        history
        sublime
        1password
        zsh-autosuggestions
        zsh-syntax-highlighting
        fast-syntax-highlighting
        )

source $ZSH/oh-my-zsh.sh

alias mkdir=take
alias myip="curl http://ipinfo.io/"

echo $- | grep -q i 2>/dev/null && . /usr/share/liquidprompt/liquidprompt
eval "$(op completion zsh)"; compdef _op op

zsh plugins:

git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone https://github.com/zdharma-continuum/fast-syntax-highlighting.git \
  ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/fast-syntax-highlighting

https://github.com/nojhan/liquidprompt