.zshrc

branch
mhoward-lt
changeset 98
7d66a2422bbc
parent 97
dadc95ee5fe6
child 99
7afd2e5f6a35
new file mode 100644
--- /dev/null
+++ b/.zshrc
@@ -0,0 +1,54 @@
+# Path to your oh-my-zsh installation.
+export ZSH=$HOME/.oh-my-zsh
+
+ZSH_THEME="mhoward"
+ZSH_CUSTOM=~/.oh-my-zsh.cust
+
+plugins=( common-aliases mercurial git mosh )
+
+if [ -f ~/.zshrc.local-pre ]; then
+  source ~/.zshrc.local-pre
+fi
+
+# Uncomment the following line to disable auto-setting terminal title.
+# DISABLE_AUTO_TITLE="true"
+
+# Uncomment the following line to display red dots whilst waiting for completion.
+# COMPLETION_WAITING_DOTS="true"
+
+# Uncomment the following line if you want to disable marking untracked files
+# under VCS as dirty. This makes repository status check for large repositories
+# much, much faster.
+# DISABLE_UNTRACKED_FILES_DIRTY="true"
+
+
+
+source $ZSH/oh-my-zsh.sh
+
+# User configuration
+
+export PATH="$HOME/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
+# export MANPATH="/usr/local/man:$MANPATH"
+
+# export LANG=en_US.UTF-8
+
+export EDITOR='vim'
+export PERL_CPANM_OPT='-n --prompt --reinstall'
+
+typeset -U path
+
+if [ -d ~/.plenv ]; then
+  path=( ~/.plenv/bin "$path[@]" )
+  eval "$(plenv init - zsh)"
+fi
+
+if [ -d ~/.rbenv ]; then
+  path=( ~/.rbenv/bin "$path[@]" )
+  eval "$(rbenv init - zsh)"
+fi
+
+
+if [ -f ~/.zshrc.local ]; then
+  source ~/.zshrc.local
+fi
+

mercurial