Created
August 12, 2014 21:49
-
-
Save thorsteinsson/9b12707a8376152ecf41 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=$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="agnoster" | |
| POWERLINE_DETECT_SSH="true" | |
| POWERLINE_GIT_CLEAN="✔" | |
| POWERLINE_GIT_DIRTY="✘" | |
| POWERLINE_GIT_ADDED="%F{green}✚%F{black}" | |
| POWERLINE_GIT_MODIFIED="%F{blue}✹%F{black}" | |
| POWERLINE_GIT_DELETED="%F{red}✖%F{black}" | |
| POWERLINE_GIT_UNTRACKED="%F{yellow}✭%F{black}" | |
| POWERLINE_GIT_RENAMED="➜" | |
| POWERLINE_GIT_UNMERGED="═" | |
| alias zshconfig="s ~/environment/.zshrc" | |
| alias ohmyzsh="s ~/environment/.oh-my-zsh" | |
| COMPLETION_WAITING_DOTS="true" | |
| # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) | |
| # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ | |
| plugins=(git autojump wd bower brew cloudapp dircycle npm osx rvm sublime sudo vagrant) | |
| source $ZSH/oh-my-zsh.sh | |
| # User configuration | |
| export PATH="/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin" | |
| # You may need to manually set your language environment | |
| export LANG=en_US.UTF-8 | |
| # Preferred editor for local and remote sessions | |
| if [[ -n $SSH_CONNECTION ]]; then | |
| export EDITOR='vim' | |
| else | |
| export EDITOR='mvim' | |
| fi | |
| # Compilation flags | |
| export ARCHFLAGS="-arch x86_64" | |
| # ssh | |
| # export SSH_KEY_PATH="~/.ssh/dsa_id" | |
| export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting | |
| ulimit -n 1024 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment