initial commit: 1.5.0
[systemrescuecd.git] / overlay-squashfs-x86 / root / .zshrc
1
2 # This file is based on the configuration written by
3 # Bruno Bonfils, <asyd@debian-fr.org> 
4 # Written since summer 2001
5
6 #
7 # My functions (don't forget to modify fpath before call compinit !!)
8 fpath=($HOME/.zsh/functions $fpath)
9
10 # colors
11 eval `dircolors $HOME/.zsh/colors`
12
13 autoload -U zutil
14 autoload -U compinit
15 autoload -U complist
16
17 bindkey '\e[A' history-search-backward
18 bindkey '\e[B' history-search-forward
19 bindkey '^K' kill-whole-line
20 bindkey "\e[H" beginning-of-line        # Home (xorg)
21 bindkey "\e[1~" beginning-of-line       # Home (console)
22 bindkey "\e[4~" end-of-line             # End (console)
23 bindkey "\e[F" end-of-line              # End (xorg)
24 bindkey "\e[2~" overwrite-mode          # Ins
25 bindkey "\e[3~" delete-char             # Delete
26 bindkey '\eOH' beginning-of-line
27 bindkey '\eOF' end-of-line
28
29 # Activation
30 compinit
31
32 # Resource files
33 for file in $HOME/.zsh/rc/*.rc; do
34         source $file
35 done