2 setopt autocd extendedglob
6 # typeset -U makes every array entry unique; /usr/{pkg,local} are bsdisms
8 path=({~/,/,/usr/}sbin {~/,/,/usr/}bin /usr/pkg/{s,}bin /usr/X11R{7,6}/bin
9 /usr/local/{s,}bin $path)
21 bindkey "^[[7~" beginning-of-line #Home
22 bindkey -a "^[[7~" beginning-of-line
23 bindkey "^[[8~" end-of-line #End
24 bindkey -a "^[[8~" end-of-line
25 bindkey "^[[3~" delete-char #Del
26 bindkey -a "^[[3~" delete-char
28 autoload -Uz up-line-or-beginning-search down-line-or-beginning-search
29 zle -N up-line-or-beginning-search
30 zle -N down-line-or-beginning-search
31 [[ -n "$key[Up]" ]] && bindkey -- "$key[Up]" up-line-or-beginning-search
32 [[ -n "$key[Down]" ]] && bindkey -- "$key[Down]" down-line-or-beginning-search
40 local p="ps -aSdxwwouser=USR -ogroup=GRP -opid,nice=N \
41 -o%cpu,%mem,tt,stat,start=START -oetime,command | ${PAGER:-more} -Se"
46 alias va="source bin/activate"
51 if [[ "$OSTYPE" = "freebsd" ]] {
52 # don't confirm if only a few files are deleted
61 if [[ "$TERM" = "wsvt25" ]] {
67 PROMPT='%F{$VICOL}%n'"$f"'@%F{$VICOL}%2m'"$f"'%(?../%F{red}$?'"$f"')%# '
68 RPROMPT='%F{yellow}${vcs_info_msg_0_:-%~}'"$f"' %T'
70 ## change color based on zle vi mode
71 function zle-line-init zle-keymap-select {
72 VICOL="${${KEYMAP:/vicmd/red}:/(main|viins)/green}"
76 zle -N zle-keymap-select
80 zstyle ':vcs_info:*' enable git
81 zstyle ':vcs_info:git*' formats '%c%u%%F{green}%r/%b%%F{white}/%%F{yellow}%S%'"$f"
82 zstyle ':vcs_info:git*' actionformats '%%F{red}(%a)'"$f"' %c%u%%F{green}%r/%b'"$f"'/%%F{yellow}%S'"$f"
83 #zstyle ':vcs_info:git*' check-for-changes true #too slow
84 zstyle ':vcs_info:git*:.dotfiles' check-for-changes true
85 zstyle ':vcs_info:git*' check-for-staged-changes true
86 zstyle ':vcs_info:git*' stagedstr "%F{blue}+"
87 zstyle ':vcs_info:git*' unstagedstr "%F{red}*"
94 # change terminal title
95 print -Pn "\e]2;%(1j,%j,)%#${SSH_CLIENT+$USER@$HOST:}%~\e\\"
98 # bell if exec takes 5s
99 if ((SECONDS - _exectime >= 5)) print "\a"
102 # change terminal title to show command
103 print -Pnf "\e]2;%s\e\\" "%#${SSH_CLIENT+$USER@$HOST:}$1"
104 # save last exec time for bell
112 if [[ "$OSTYPE" = "freebsd" ]] {
114 bindkey "^[[H" beginning-of-line #Home
115 bindkey -a "^[[H" beginning-of-line
116 bindkey "^[[F" end-of-line #End
117 bindkey -a "^[[F" end-of-line
120 function s { sysctl hw.snd.default_unit${1:+\=$1} }
122 ## install port dependencies from pkg (like pkgsrc `bmake bin-install')
126 sudo pkg install -AU $(make ${1}-depends-list |
127 sed 's_/usr/ports/_ _' | tr -d '\n')
129 *) echo "Usage: \`portpkg <build|run>' in a port directory"
135 # The following lines were added by compinstall
136 zstyle ':completion:*' auto-description 'specify: %d'
137 zstyle ':completion:*' expand suffix
138 zstyle ':completion:*' format '# %d'
139 zstyle ':completion:*' group-name ''
140 zstyle ':completion:*' ignore-parents parent
141 zstyle ':completion:*' insert-unambiguous false
142 zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
143 zstyle ':completion:*' list-prompt '%B%i%b'
144 zstyle ':completion:*' list-suffixes true
145 zstyle ':completion:*' matcher-list '' 'm:{[:lower:]}={[:upper:]}' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} r:|[._-]=* r:|=*' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} l:|=* r:|=*'
146 zstyle ':completion:*' menu select=1
147 zstyle ':completion:*' original false
148 zstyle ':completion:*' select-prompt '%B%l%b'
149 zstyle ':completion:*' verbose true
150 zstyle :compinstall filename '/home/ds6/.zshrc'
152 autoload -Uz compinit
154 # End of lines added by compinstall
156 # vim: ts=8:sts=4:sw=4:et:tw=79