.zshrc

changeset 94
51ca19919894
child 95
6c1ea6e90a23
equal deleted inserted replaced
93:f8612a811de0 94:51ca19919894
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.custom
6
7 plugins=( common-aliases mercurial git mosh )
8
9 if [ -f ~/.zshrc.local-pre ];
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
37 typeset -U path
38
39 if [ -d ~/.plenv ]; then
40 path=( ~/.plenv/bin "$path[@]" )
41 eval "$(plenv init - zsh)"
42 fi
43
44 if [ -d ~/.rbenv ]; then
45 path=( ~/.rbenv/bin "$path[@]" )
46 eval "$(rbenv init - zsh)"
47 fi
48
49
50 if [ -f ~/.zshrc.local ]; then
51 source ~/.zshrc.local
52 fi
53

mercurial