2 setopt autocd extendedglob
15 bindkey "^[[7~" beginning-of-line #Home
16 bindkey -a "^[[7~" beginning-of-line
17 bindkey "^[[8~" end-of-line #End
18 bindkey -a "^[[8~" end-of-line
19 bindkey "^[[3~" delete-char #Del
20 bindkey -a "^[[3~" delete-char
22 bindkey "^[[H" beginning-of-line #Home
23 bindkey -a "^[[H" beginning-of-line
24 bindkey "^[[F" end-of-line #End
25 bindkey -a "^[[F" end-of-line
27 autoload -Uz up-line-or-beginning-search down-line-or-beginning-search
28 zle -N up-line-or-beginning-search
29 zle -N down-line-or-beginning-search
30 [[ -n "$key[Up]" ]] && bindkey -- "$key[Up]" up-line-or-beginning-search
31 [[ -n "$key[Down]" ]] && bindkey -- "$key[Down]" down-line-or-beginning-search
38 local p="ps -aSdxwwouser=USR -ogroup=GRP -opid,nice=N \
39 -o%cpu,%mem,tt,stat,start=START -oetime,command | ${PAGER:-more} -Se"
43 function s { sysctl hw.snd.default_unit${1:+=$1} }
44 alias va="source bin/activate"
56 sudo pkg install -AU $(make ${1}-depends-list |
57 sed 's_/usr/ports/_ _' | tr -d '\n')
59 *) echo "Usage: \`portpkg <build|run>' in a port directory"
66 PROMPT='%F{$VICOL}%n%f@%F{$VICOL}%2m%f%(?../%F{red}$?%f)%# '
67 RPROMPT='%F{yellow}${vcs_info_msg_0_:-%~}%f %T'
69 function zle-line-init zle-keymap-select {
70 VICOL="${${KEYMAP:/vicmd/red}:/(main|viins)/green}"
74 zle -N zle-keymap-select
77 zstyle ':vcs_info:*' enable git
78 zstyle ':vcs_info:git*' formats "%c%u%%F{green}%r/%b%%f/%%F{yellow}%S%%f"
79 zstyle ':vcs_info:git*' actionformats "%%F{red}(%a)%%f %c%u%%F{green}%r/%b%%f/\
81 #zstyle ':vcs_info:git*' check-for-changes true #too slow
82 zstyle ':vcs_info:git*' check-for-staged-changes true
83 zstyle ':vcs_info:git*' stagedstr "%F{blue}+"
84 zstyle ':vcs_info:git*' unstagedstr "%F{red}*"
87 print -Pn "\e]0;%(1j,%j,)%#${SSH_CLIENT+$USER@$HOST:}%~\a"
89 if ((SECONDS - _exectime >= 5)) {
90 # bell if exec takes 5s
96 print -Pnf "\e]0;%s\a" "%#${SSH_CLIENT+$USER@$HOST:}$1"
101 # The following lines were added by compinstall
102 zstyle ':completion:*' auto-description 'specify: %d'
103 zstyle ':completion:*' expand suffix
104 zstyle ':completion:*' format '# %d'
105 zstyle ':completion:*' group-name ''
106 zstyle ':completion:*' ignore-parents parent
107 zstyle ':completion:*' insert-unambiguous false
108 zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
109 zstyle ':completion:*' list-prompt '%B%i%b'
110 zstyle ':completion:*' list-suffixes true
111 zstyle ':completion:*' matcher-list '' 'm:{[:lower:]}={[:upper:]}' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} r:|[._-]=* r:|=*' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} l:|=* r:|=*'
112 zstyle ':completion:*' menu select=1
113 zstyle ':completion:*' original false
114 zstyle ':completion:*' select-prompt '%B%l%b'
115 zstyle ':completion:*' verbose true
116 zstyle :compinstall filename '/home/ds6/.zshrc'
118 autoload -Uz compinit
120 # End of lines added by compinstall
122 # vim: ts=8:sts=4:sw=4:et:tw=79