2 fpath=(~/.zsh ~/.zsh/functions/Prompts "${fpath[@]}")
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
26 bindkey "^[[7~" beginning-of-line #Home
27 bindkey -a "^[[7~" beginning-of-line
28 bindkey "^[[8~" end-of-line #End
29 bindkey -a "^[[8~" end-of-line
30 bindkey "^[[3~" delete-char #Del
31 bindkey -a "^[[3~" delete-char
33 autoload -Uz up-line-or-beginning-search down-line-or-beginning-search && {
34 if [[ -n "$key[Up]" ]] {
35 zle -N up-line-or-beginning-search
36 bindkey -- "$key[Up]" up-line-or-beginning-search
38 if [[ -n "$key[Down]" ]] {
39 bindkey -- "$key[Down]" down-line-or-beginning-search
40 zle -N down-line-or-beginning-search
48 alias e="${EDITOR:-vi}" # TODO: make sure vi is there or use safe default
49 if [[ "$OSTYPE" =~ '^(free|net)bsd' ]] {
56 if { which pstree >/dev/null 2>&1 && \
57 [[ ! "$(readlink -f $(which pstree))" =~ "/busybox" ]] } {
58 # use pstree, but NOT busybox pstree because it kinda sucks
60 } elif [[ "$OSTYPE" =~ '^freebsd' ]] {
61 p="ps -aSdfxwwouser=USR -ogroup=GRP -opid,nice=NI \
62 -o%cpu,%mem,tty,stat,start=START -oetime,command"
63 } elif [[ "$(readlink -f $(which ps))" =~ "/busybox" ]] {
65 p="ps -eouser='USR ' -ogroup='GRP ' \
66 -opid=' PID' -onice=' NI' -ovsz=' MEM' \
67 -otty,stat,etime,comm"
69 # XXX: untested, posix
70 # TODO: support gnu ps
71 p="ps -eouser=USR -ogroup=GRP -opid,nice=NI \
72 -opcpu=CPU -ovsz=MEM -otty,stat,etime,comm"
74 p="$p | ${PAGER:-more} -Se"
79 alias va="source bin/activate"
84 if [[ "$OSTYPE" =~ '^freebsd' ]] {
85 # don't confirm if only a few files are deleted
88 # TODO: similar behavior for non-freebsd, or impliment in zsh
93 cd $(printf '../%.0s' {1..${1:-1}})
99 # change terminal title
100 # TODO: update and send BEL when job status changes
101 print -Pn "\e]2;%(1j,%j,)%#${SSH_CLIENT+$USER@$HOST:}%~\e\\"
102 # bell if exec takes 5s
103 if ((SECONDS - _exectime >= 5)) print "\a"
104 # we could update vcs_info here, but let prompt take care of it
105 # if it doesn't use vcs, it can be ignored safely
108 # change terminal title to show command
109 print -Pnf "\e]2;%s\e\\" "%#${SSH_CLIENT+$USER@$HOST:}$1"
110 # save last exec time for bell
111 # XXX: does not run for blank cmdline
115 # echo dir on cwd change
119 ### system-specific configs and aliases
123 bindkey "^[[H" beginning-of-line #Home
124 bindkey -a "^[[H" beginning-of-line
125 bindkey "^[[F" end-of-line #End
126 bindkey -a "^[[F" end-of-line
129 function s { sysctl hw.snd.default_unit${1:+\=$1} }
132 ## install port dependencies from pkg (like pkgsrc `bmake bin-install')
133 #XXX: should probably use package-depends where possible, breaks when
134 # port name is different to package name
135 # (eg. graphics/sdl20 == sdl2, devel/glib20 == glib2, etc)
139 sudo pkg install -AU $(make ${1}-depends-list |
140 sed 's_/usr/ports/_ _' | tr -d '\n')
142 *) echo "Usage: \`portpkg <build|run>' in a port directory"
150 ll /dev/mixer /dev/sound /dev/audio
153 for x in mixer sound audio; do
154 ln -sf /dev/$x"$1" /dev/$x
159 for x in $(mixerctl -a | grep 'outputs\.master'); do
164 mixerctl -w outputs.master"$2"="$1"
168 # TODO: test alsa/oss/sndio/portaudio/pulse in order of importance
174 autoload -Uz vcs_info
175 zstyle ':vcs_info:*' enable git
176 #zstyle ':vcs_info:git*' check-for-changes true #too slow
177 zstyle ':vcs_info:git*:dotfiles' check-for-changes true
178 zstyle ':vcs_info:git*' check-for-staged-changes true
181 # The following lines were added by compinstall
182 zstyle ':completion:*' auto-description '[arg] %d'
183 zstyle ':completion:*' expand suffix
184 zstyle ':completion:*' format '# %d'
185 zstyle ':completion:*' group-name ''
186 zstyle ':completion:*' ignore-parents parent
187 zstyle ':completion:*' insert-unambiguous false
188 zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
189 zstyle ':completion:*' list-prompt '%B%i%b'
190 zstyle ':completion:*' list-suffixes true
191 zstyle ':completion:*' matcher-list '' 'm:{[:lower:]}={[:upper:]}' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} r:|[._-]=* r:|=*' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} l:|=* r:|=*'
192 zstyle ':completion:*' menu select=1
193 zstyle ':completion:*' original false
194 zstyle ':completion:*' select-prompt '%B%l%b'
195 zstyle ':completion:*' verbose true
196 zstyle :compinstall filename '/home/ds6/.zshrc'
198 autoload -Uz compinit
200 # End of lines added by compinstall
203 # do this last so prompt can potentially override
204 autoload -Uz promptinit && promptinit
207 # vim: set et sts=4 sw=4 ts=8 tw=79 :