]> git.pld-linux.org Git - packages/zsh.git/blobdiff - zshrc
- ups
[packages/zsh.git] / zshrc
diff --git a/zshrc b/zshrc
index 6f548cb2d1266cba53eef4b58be75d778b584908..979770b048f910073a62df4dbacf2778bc7bd6fc 100644 (file)
--- a/zshrc
+++ b/zshrc
@@ -4,7 +4,13 @@ alias which=whence
 alias cd='builtin cd'
 alias precmd=' precmd'
 
-setopt hist_ignore_space
+# SYSTEM WIDE ALIASES ETC.
+for i in `find /etc/shrc.d -name '*.sh' 2> /dev/null` ; do
+       . $i
+done
+unset i
+
+setopt hist_ignore_space hist_ignore_all_dups list_packed transient_rprompt
 
 bindkey -e >/dev/null 2>&1
 
@@ -17,9 +23,12 @@ bindkey `tput knp` end-of-history >/dev/null 2>&1
 bindkey `tput kcuu1` history-beginning-search-backward >/dev/null 2>&1
 bindkey `tput kcud1` history-beginning-search-forward >/dev/null 2>&1
 
+PS1='[%n@%m %~]%(!.#.%\$) '
+export PS1
+
 case "$TERM" in
-       xterm*)
-               precmd () { print -Pn "\e]0;%n@%m: %~\a"i; }
+       xterm*|nxterm|gnome|rxvt)
+               precmd () { print -Pn "\e]0;%n@%m: %~\a" }
                bindkey '^[[H' beginning-of-line >/dev/null 2>&1
                bindkey '^[[F' end-of-line >/dev/null 2>&1
                ;;
This page took 0.117301 seconds and 4 git commands to generate.