Skip to content

Instantly share code, notes, and snippets.

@camilonova
Last active January 25, 2019 16:51
Show Gist options
  • Save camilonova/9eaf78a24d3ec4a6b740 to your computer and use it in GitHub Desktop.
Save camilonova/9eaf78a24d3ec4a6b740 to your computer and use it in GitHub Desktop.
export ZSH=/Users/camilo/.oh-my-zsh
ZSH_THEME="pure"
plugins=(git zsh-syntax-highlighting)
export PATH="/Users/camilo/Library/Python/2.7/bin:/Users/camilo/Library/Python/3.6/bin/:/usr/local/Cellar/python/3.7.0/Frameworks/Python.framework/Versions/3.7/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/camilo/go/bin/"
source $ZSH/oh-my-zsh.sh
HISTSIZE=1000
SAVEHIST=1000
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
alias gitpullallthethings="ls | xargs -P10 -I{} git -C {} pull --verbose"
alias dup="docker-compose up"
alias dstop="docker-compose stop"
alias dbuild="docker-compose build"
# Brew commands
alias ping='prettyping --nolegend'
alias cat='bat --style=plain'
alias preview="fzf --preview 'bat --color \"always\" {}'"
# add support for ctrl+o to open selected file in VS Code
export FZF_DEFAULT_OPTS="--bind='ctrl-o:execute(code {})+abort'"
alias help='tldr'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment