]> git.sev.monster Git - dotfiles.git/blame_incremental - base/.zshrc
clean .zprofile vars, update zsh opts, fix dpass
[dotfiles.git] / base / .zshrc
... / ...
CommitLineData
1### user-local fpath
2fpath=(~/.zsh ~/.zsh/functions/Prompts "${fpath[@]}")
3
4### options
5setopt NO_BEEP NO_CLOBBER
6## cd
7setopt AUTO_CD CDABLE_VARS
8## completion
9setopt GLOB_COMPLETE
10## line
11setopt EXTENDED_GLOB GLOB_DOTS MARK_DIRS NOMATCH NUMERIC_GLOB_SORT
12## prompt
13setopt PROMPT_SUBST
14## jobs
15setopt AUTO_CONTINUE
16## history
17setopt NO_HIST_SAVE_BY_COPY HIST_IGNORE_DUPS SHARE_HISTORY
18HISTFILE=~/.histfile
19HISTSIZE=1000
20SAVEHIST=1000
21
22### keys
23bindkey -v
24KEYTIMEOUT=1
25## xorg
26bindkey "^[[7~" beginning-of-line #Home
27bindkey -a "^[[7~" beginning-of-line
28bindkey "^[[8~" end-of-line #End
29bindkey -a "^[[8~" end-of-line
30bindkey "^[[3~" delete-char #Del
31bindkey -a "^[[3~" delete-char
32## history search
33autoload -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
37 }
38 if [[ -n "$key[Down]" ]] {
39 bindkey -- "$key[Down]" down-line-or-beginning-search
40 zle -N down-line-or-beginning-search
41 }
42}
43
44### aliases
45alias h="history -25"
46alias j="jobs -l"
47alias l="ls -AF"
48alias e="${EDITOR:-vi}" # TODO: make sure vi is there or use safe default
49if [[ "$OSTYPE" =~ '^(free|net)bsd' ]] {
50 alias ll="ls -lAFho"
51} else {
52 alias ll="ls -lAFh"
53}
54## ps
55local p=
56if { which pstree >/dev/null 2>&1 && \
57 [[ ! "$(readlink -f $(which pstree))" =~ "/busybox" ]] } {
58 # use pstree, but NOT busybox pstree because it kinda sucks
59 p="pstree -wg3"
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" ]] {
64 # busybox compatible
65 p="ps -eouser='USR ' -ogroup='GRP ' \
66 -opid=' PID' -onice=' NI' -ovsz=' MEM' \
67 -otty,stat,etime,comm"
68} else {
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"
73}
74p="$p | ${PAGER:-more} -Se"
75alias pa="$p"
76alias spa="sudo $p"
77unset p
78## py venv
79alias va="source bin/activate"
80alias vd="deactivate"
81## be paranoid
82alias cp='cp -ip'
83alias mv='mv -i'
84if [[ "$OSTYPE" =~ '^freebsd' ]] {
85 # don't confirm if only a few files are deleted
86 alias rm='rm -I'
87} else {
88 # TODO: similar behavior for non-freebsd, or impliment in zsh
89 alias rm='rm -i'
90}
91## go up directories
92function up() {
93 cd $(printf '../%.0s' {1..${1:-1}})
94}
95
96### hooks
97local _exectime=
98function precmd {
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
106}
107function preexec {
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
112 _exectime=$SECONDS
113}
114function chpwd {
115 # echo dir on cwd change
116 l
117}
118
119### system-specific configs and aliases
120case "$OSTYPE"; in
121 freebsd*)
122 ## vt binds
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
127
128 ## sound
129 function s { sysctl hw.snd.default_unit${1:+\=$1} }
130 alias vol mixer
131
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)
136 function portpkg {
137 case "$1" {
138 build|run)
139 sudo pkg install -AU $(make ${1}-depends-list |
140 sed 's_/usr/ports/_ _' | tr -d '\n')
141 ;;
142 *) echo "Usage: \`portpkg <build|run>' in a port directory"
143 return 1;;
144 }
145 };;
146 netbsd)
147 ## sound
148 function s {
149 if [[ -z "$1" ]] {
150 ll /dev/mixer /dev/sound /dev/audio
151 return
152 }
153 for x in mixer sound audio; do
154 ln -sf /dev/$x"$1" /dev/$x
155 done
156 }
157 function vol {
158 if [[ -z "$1" ]] {
159 for x in $(mixerctl -a | grep 'outputs\.master'); do
160 echo $x
161 done
162 return
163 }
164 mixerctl -w outputs.master"$2"="$1"
165 };;
166 *)
167 ## sound
168 # TODO: test alsa/oss/sndio/portaudio/pulse in order of importance
169 function s() {}
170esac
171
172### modules & styles
173## vcs
174autoload -Uz vcs_info
175zstyle ':vcs_info:*' enable git
176#zstyle ':vcs_info:git*' check-for-changes true #too slow
177zstyle ':vcs_info:git*:dotfiles' check-for-changes true
178zstyle ':vcs_info:git*' check-for-staged-changes true
179
180## compinit
181# The following lines were added by compinstall
182zstyle ':completion:*' auto-description '[arg] %d'
183zstyle ':completion:*' expand suffix
184zstyle ':completion:*' format '# %d'
185zstyle ':completion:*' group-name ''
186zstyle ':completion:*' ignore-parents parent
187zstyle ':completion:*' insert-unambiguous false
188zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
189zstyle ':completion:*' list-prompt '%B%i%b'
190zstyle ':completion:*' list-suffixes true
191zstyle ':completion:*' matcher-list '' 'm:{[:lower:]}={[:upper:]}' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} r:|[._-]=* r:|=*' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} l:|=* r:|=*'
192zstyle ':completion:*' menu select=1
193zstyle ':completion:*' original false
194zstyle ':completion:*' select-prompt '%B%l%b'
195zstyle ':completion:*' verbose true
196zstyle :compinstall filename '/home/ds6/.zshrc'
197
198autoload -Uz compinit
199compinit
200# End of lines added by compinstall
201
202## prompt
203# do this last so prompt can potentially override
204autoload -Uz promptinit && promptinit
205prompt ds6
206
207# vim: set et sts=4 sw=4 ts=8 tw=79 :
This page took 0.031572 seconds and 4 git commands to generate.