28 lines
885 B
Bash
28 lines
885 B
Bash
# Path to your oh-my-zsh installation.
|
|
export ZSH=~/.oh-my-zsh
|
|
|
|
# Set name of the theme to load.
|
|
# Look in ~/.oh-my-zsh/themes/
|
|
ZSH_THEME="robbyrussell"
|
|
|
|
# Uncomment the following line to display red dots whilst waiting for completion.
|
|
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/
|
|
# Example format: plugins=(rails git textmate ruby lighthouse)
|
|
# Add wisely, as too many plugins slow down shell startup.
|
|
plugins=(git git-flow capistrano docker fasd ssh-agent)
|
|
|
|
# User configuration
|
|
|
|
export PATH=$HOME/bin:/usr/local/bin:$PATH
|
|
# export MANPATH="/usr/local/man:$MANPATH"
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
# You may need to manually set your language environment
|
|
# export LANG=en_US.UTF-8
|
|
|
|
# Preferred editor for local and remote sessions
|
|
export EDITOR='vim' |