Browse code

Moving some more config into prompt.zsh to reduce amount of code in .zshrc

Robby Russell authored on 31/08/2009 at 00:40:54
Showing 2 changed files
... ...
@@ -1,3 +1,6 @@
1
+export PAGER=less
2
+export LC_CTYPE=en_US.UTF-8
3
+
1 4
 bindkey -e
2 5
 
3 6
 # Directory stuff.
... ...
@@ -1,22 +1,10 @@
1
-export PAGER=less
1
+# Path to your oh-my-zsh configuration.
2 2
 export ZSH=$HOME/oh-my-zsh
3
-export LC_CTYPE=en_US.UTF-8
4 3
 
5 4
 # Load all of the config files in ~/oh-my-zsh that end in .zsh
6 5
 # TIP: Add files you don't want in git to .gitignore
7 6
 for i in $ZSH/*zsh; do source $i; done;
8 7
 
9
-# Directory stuff.
10
-
11
-setopt AUTO_NAME_DIRS
12
-
13
-# Speed stuff.
14
-
15
-#setopt NO_BEEP
16
-setopt AUTO_CD
17
-setopt MULTIOS
18
-setopt CDABLEVARS
19
-
20 8
 # Customize to your needs...
21 9
 export PATH=~/bin:/opt/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/local/sbin:/opt/local/lib/postgresql83/bin
22 10