]> git.pld-linux.org Git - packages/zsh.git/blame - zshrc
- added nolibs patch (avoids -liconv)
[packages/zsh.git] / zshrc
CommitLineData
3cad6678
TP
1# for interactive shell
2
3alias which=whence
4alias cd='builtin cd'
5alias precmd=' precmd'
6
0535ffe2 7setopt hist_ignore_space hist_ignore_all_dups list_packed transient_rprompt
adef8d5b 8
3cad6678
TP
9bindkey -e >/dev/null 2>&1
10
11bindkey `tput khome` beginning-of-line >/dev/null 2>&1
12bindkey `tput kend` end-of-line >/dev/null 2>&1
13bindkey `tput kich1` quoted-insert >/dev/null 2>&1
14bindkey `tput kdch1` delete-char >/dev/null 2>&1
15bindkey `tput kpp` up-history >/dev/null 2>&1
16bindkey `tput knp` end-of-history >/dev/null 2>&1
17bindkey `tput kcuu1` history-beginning-search-backward >/dev/null 2>&1
18bindkey `tput kcud1` history-beginning-search-forward >/dev/null 2>&1
19
20case "$TERM" in
21 xterm*)
97724a83 22 precmd () { print -Pn "\e]0;%n@%m: %~\a" }
3cad6678
TP
23 bindkey '^[[H' beginning-of-line >/dev/null 2>&1
24 bindkey '^[[F' end-of-line >/dev/null 2>&1
25 ;;
26esac
This page took 0.05541 seconds and 4 git commands to generate.