Created
September 13, 2015 20:40
-
-
Save k0nserv/63f91e0304e010c71453 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 configuration. | |
ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
ZSH_THEME="avit" | |
# Example aliases | |
# alias zshconfig="mate ~/.zshrc" | |
# alias ohmyzsh="mate ~/.oh-my-zsh" | |
alias gs="git status" | |
alias glc="git pull origin \$(current_branch)" | |
alias gpc="git push origin \$(current_branch)" | |
alias gbr="git branch -r" | |
alias grm="git branch --merged | grep -v \"\*\" | xargs -n 1 git branch -d" | |
alias ll="ls -la" | |
alias l="ls -l" | |
alias tracert="traceroute" | |
alias grep="grep --color=always" | |
export UPDATE_ZSH_DAYS=1 | |
HIST_IGNORE_SPACE="true" | |
plugins=(web-search git vagrant bundler osx jump) | |
source $ZSH/oh-my-zsh.sh | |
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi | |
export LC_ALL=en_US.UTF-8 | |
export LANG=en_US.UTF-8 | |
export LANGUAGE=en_US.UTF-8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment