.zshrc

branch
mhoward-lt
changeset 98
7d66a2422bbc
parent 97
dadc95ee5fe6
child 99
7afd2e5f6a35
equal deleted inserted replaced
92:92aa984868e2 98:7d66a2422bbc
1 # Path to your oh-my-zsh installation.
2 export ZSH=$HOME/.oh-my-zsh
3
4 ZSH_THEME="mhoward"
5 ZSH_CUSTOM=~/.oh-my-zsh.cust
6
7 plugins=( common-aliases mercurial git mosh )
8
9 if [ -f ~/.zshrc.local-pre ]; then
10 source ~/.zshrc.local-pre
11 fi
12
13 # Uncomment the following line to disable auto-setting terminal title.
14 # DISABLE_AUTO_TITLE="true"
15
16 # Uncomment the following line to display red dots whilst waiting for completion.
17 # COMPLETION_WAITING_DOTS="true"
18
19 # Uncomment the following line if you want to disable marking untracked files
20 # under VCS as dirty. This makes repository status check for large repositories
21 # much, much faster.
22 # DISABLE_UNTRACKED_FILES_DIRTY="true"
23
24
25
26 source $ZSH/oh-my-zsh.sh
27
28 # User configuration
29
30 export PATH="$HOME/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
31 # export MANPATH="/usr/local/man:$MANPATH"
32
33 # export LANG=en_US.UTF-8
34
35 export EDITOR='vim'
36 export PERL_CPANM_OPT='-n --prompt --reinstall'
37
38 typeset -U path
39
40 if [ -d ~/.plenv ]; then
41 path=( ~/.plenv/bin "$path[@]" )
42 eval "$(plenv init - zsh)"
43 fi
44
45 if [ -d ~/.rbenv ]; then
46 path=( ~/.rbenv/bin "$path[@]" )
47 eval "$(rbenv init - zsh)"
48 fi
49
50
51 if [ -f ~/.zshrc.local ]; then
52 source ~/.zshrc.local
53 fi
54

mercurial