Last active
August 3, 2018 02:53
-
-
Save adrianoresende/b028e23419a1657cd1419fd7ebd6edfb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Path to your oh-my-zsh installation. | |
export ZSH=/Users/adriano/.oh-my-zsh | |
ZSH_THEME="agnoster" | |
DEFAULT_USER="adriano" | |
HIST_STAMPS="dd/mm/yyyy" | |
RPROMPT="%@ - %D{%d/%m/%y}" | |
plugins=( | |
git | |
zsh-autosuggestions | |
) | |
source $ZSH/oh-my-zsh.sh | |
export SSH_KEY_PATH="~/.ssh/rsa_id" | |
# Config | |
export LANG=pt_BR.UTF-8 | |
export EDITOR='vim' | |
alias glog="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" | |
# Ruby versions | |
eval "$(rbenv init -)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment