Skip to content

Instantly share code, notes, and snippets.

@guimaluf
Last active November 20, 2019 21:21
Show Gist options
  • Save guimaluf/4fe72057e82bd00935e3f1cd06883178 to your computer and use it in GitHub Desktop.
Save guimaluf/4fe72057e82bd00935e3f1cd06883178 to your computer and use it in GitHub Desktop.
autoload -U compinit promptinit
compinit
promptinit; prompt gentoo
zstyle ':completion::complete:*' use-cache 1
ZSH=$HOME/.oh-my-zsh
ZSH_THEME="gozilla"
DISABLE_CORRECTION="true"
plugins=(git ruby rails history virtualenv)
source $ZSH/oh-my-zsh.sh
export VBOX_APP_HOME='/opt/VirtualBox'
bindkey '^R' history-incremental-search-backward
bindkey '^[OH' beginning-of-line
bindkey '^[OF' end-of-line
alias be='bundle exec'
alias rss='rbenv shell system'
alias vppp='vagrant provision --provision-with puppet'
alias vssh='vagrant ssh'
alias vup='vagrant up'
alias vst='vagrant status'
alias o='openstack'
alias ee='eyaml encrypt'
alias d='docker'
alias doc='docker-compose'
alias vim='nvim'
function vpn {
sudo systemctl $1 openvpn-client@$2
}
unset GREP_OPTIONS
export PATH="$HOME/.config/composer/vendor/bin:$HOME/.rbenv/bin:$HOME/.local/bin:/usr/sbin/:$PATH"
eval "$(rbenv init -)"
export DEBFULLNAME="Guilherme Maluf Balzana"
export DEBEMAIL="guilherme@anolis.com.br"
export EDITOR=/usr/bin/nvim
export TERMINAL=/usr/bin/uxterm
export PROMPT="%{$fg_bold[yellow]%}%T %{$reset_color%}${PROMPT}"
export BC_ENV_ARGS="-l $HOME/.bcrc"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment