2 source ~/bin/.check-busybox
5 setopt NO_BEEP NO_CLOBBER
7 setopt AUTO_CD CDABLE_VARS
11 setopt EXTENDED_GLOB GLOB_DOTS MARK_DIRS NOMATCH NUMERIC_GLOB_SORT
17 setopt NO_HIST_SAVE_BY_COPY HIST_IGNORE_DUPS SHARE_HISTORY
23 bindkey "^[[7~" beginning-of-line #Home
24 bindkey -a "^[[7~" beginning-of-line
25 bindkey "^[[8~" end-of-line #End
26 bindkey -a "^[[8~" end-of-line
27 bindkey "^[[3~" delete-char #Del
28 bindkey -a "^[[3~" delete-char
30 autoload -Uz up-line-or-beginning-search down-line-or-beginning-search && {
31 if [[ -n "$key[Up]" ]] {
32 zle -N up-line-or-beginning-search
33 bindkey -- "$key[Up]" up-line-or-beginning-search
35 if [[ -n "$key[Down]" ]] {
36 bindkey -- "$key[Down]" down-line-or-beginning-search
37 zle -N down-line-or-beginning-search
45 alias e="${EDITOR:-vi}" # TODO: make sure vi is there or use safe default
46 if [[ "$OSTYPE" =~ '^(free|net)bsd' ]] {
54 if which pstree >/dev/null 2>&1 && ! check-busybox pstree; then
55 # use pstree, but NOT busybox pstree because it kinda sucks
57 elif [[ "$OSTYPE" =~ '^freebsd' ]]; then
58 p="ps -aSdfxwwouser=USR -ogroup=GRP -opid,nice=NI \
59 -o%cpu,%mem,tty,stat,start=START -oetime,command"
60 elif check-busybox ps; then
62 p="ps -eouser='USR ' -ogroup='GRP ' \
63 -opid=' PID' -onice=' NI' -ovsz=' MEM' \
64 -otty,stat,etime,comm"
66 # XXX: untested, posix
67 # TODO: support gnu ps
68 p="ps -eouser=USR -ogroup=GRP -opid,nice=NI \
69 -opcpu=CPU -ovsz=MEM -otty,stat,etime,comm"
71 if [[ "$(basename "$PAGER")" = "less" ]] {
74 p="$p | \"${PAGER:-more}\""
80 alias va="source bin/activate"
85 if [[ "$OSTYPE" =~ '^freebsd' ]] {
86 # don't confirm if only a few files are deleted
89 # TODO: similar behavior for non-freebsd, or impliment in zsh
94 cd $(printf '../%.0s' {1..${1:-1}})
100 # change terminal title
101 # TODO: update and send BEL when job status changes
102 print -Pn "\e]2;%(1j,%j,)%#${SSH_CLIENT+$USER@$HOST:}%~\e\\"
103 # bell if exec takes 5s
104 if ((SECONDS - _exectime >= 5)) print "\a"
105 # we could update vcs_info here, but let prompt take care of it
106 # if it doesn't use vcs, it can be ignored safely
109 # change terminal title to show command
110 print -Pnf "\e]2;%s\e\\" "%#${SSH_CLIENT+$USER@$HOST:}$1"
111 # save last exec time for bell
112 # XXX: does not run for blank cmdline
116 # echo dir on cwd change
120 ### system-specific configs and aliases
124 bindkey "^[[H" beginning-of-line #Home
125 bindkey -a "^[[H" beginning-of-line
126 bindkey "^[[F" end-of-line #End
127 bindkey -a "^[[F" end-of-line
131 export LS_COLORS='di=34:ln=35:so=32:pi=33:ex=31:bd=46;34:cd=43;34:su=41;30:sg=46;30:tw=42;30:ow=43;30'
134 function s { sysctl hw.snd.default_unit${1:+\=$1} }
137 ## install port dependencies from pkg (like pkgsrc `bmake bin-install')
138 #XXX: should probably use package-depends where possible, breaks when
139 # port name is different to package name
140 # (eg. graphics/sdl20 == sdl2, devel/glib20 == glib2, etc)
144 sudo pkg install -AU $(make ${1}-depends-list |
145 sed 's_/usr/ports/_ _' | tr -d '\n')
147 *) echo "Usage: \`portpkg <build|run>' in a port directory"
155 ll /dev/mixer /dev/sound /dev/audio
158 for x in mixer sound audio; do
159 ln -sf /dev/$x"$1" /dev/$x
164 for x in $(mixerctl -a | grep 'outputs\.master'); do
169 mixerctl -w outputs.master"$2"="$1"
173 # TODO: test alsa/oss/sndio/portaudio/pulse in order of importance
180 autoload -Uz vcs_info
181 zstyle ':vcs_info:*' enable git
182 #zstyle ':vcs_info:git*' check-for-changes true #too slow
183 zstyle ':vcs_info:git*:dotfiles' check-for-changes true
184 zstyle ':vcs_info:git*' check-for-staged-changes true
187 zstyle ':completion:*' auto-description '[arg] %d'
188 zstyle ':completion:*' expand suffix
189 zstyle ':completion:*' format '# %d'
190 zstyle ':completion:*' group-name ''
191 zstyle ':completion:*' ignore-parents parent
192 zstyle ':completion:*' insert-unambiguous false
193 zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
194 zstyle ':completion:*' list-prompt '%B%i%b'
195 zstyle ':completion:*' list-suffixes true
196 zstyle ':completion:*' matcher-list '' 'm:{[:lower:]}={[:upper:]}' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} r:|[._-]=* r:|=*' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} l:|=* r:|=*'
197 zstyle ':completion:*' menu select=1
198 zstyle ':completion:*' original false
199 zstyle ':completion:*' select-prompt '%B%l%b'
200 zstyle ':completion:*' verbose true
201 zstyle :compinstall filename '/home/ds6/.zshrc'
203 autoload -Uz compinit && compinit
206 # do this last so prompt can potentially override other settings
207 autoload -Uz promptinit && promptinit
210 ### load site-specific
211 if [[ -f ~/.zshrc.local ]] { source ~/.zshrc.local }
214 unfunction check-busybox
216 # vim: set et sts=4 sw=4 ts=8 tw=79 :