Created
April 7, 2015 12:39
-
-
Save simbo/8f80bf0e0af80cc9f8f7 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
# oh-my-zsh config | |
export ZSH=$HOME/.oh-my-zsh | |
export UPDATE_ZSH_DAYS=13 | |
COMPLETION_WAITING_DOTS="true" | |
HIST_STAMPS="dd.mm.yyyy" | |
plugins=(git emoji-clock nvm) | |
# paths | |
export PATH=$HOME/.bin:/usr/local/bin:$PATH | |
export MANPATH="/usr/local/man:$MANPATH" | |
# oh-my-zsh init | |
source $ZSH/oh-my-zsh.sh | |
# localization | |
export LANG=de_DE.UTF-8 | |
# preferred editor for local and remote sessions | |
if [[ -n $SSH_CONNECTION ]]; then | |
export EDITOR='nano' | |
else | |
export EDITOR='subl -w' | |
fi | |
# compilation flags | |
export ARCHFLAGS="-arch x86_64" | |
# ssh | |
export SSH_KEY_PATH="~/.ssh/dsa_id" | |
# aliases | |
alias zshconfig="subl ~/.zshrc" | |
alias ohmyzsh="subl ~/.oh-my-zsh" | |
alias open='open -t' | |
# zsh git prompt | |
source ~/.zsh-git-prompt/zshrc.sh | |
# custom prompt | |
PROMPT='π %B%{$fg[magenta]%}%~%{$reset_color%}%b$(git_super_status) | |
π %B%{%F{cyan}%}β%{%f%}%b ' | |
RPROMPT='$(emoji-clock) %{$fg[yellow]%}%*%{$reset_color%}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment