}
unset a k v
+## fzf
+# bash-style reverse-search-history (i.e. reverse-i-search)
+if [[ -v commands[fzf] ]] {
+ function _history-incremental-pattern-search-fzf {
+ l=(${(f)"$(fc -li -1 0 | fzf -e -m -n 1 +s --preview-window=hidden ${BUFFER:+-q $BUFFER})"})
+ l=$(for x ("${l[@]}") { echo ${${=x}:3}; })
+ BUFFER="$l"
+ }
+ zle -N _history-incremental-pattern-search-fzf
+ bindkey '^R' _history-incremental-pattern-search-fzf
+} else {
+ bindkey '^R' history-incremental-pattern-search-backward
+}
+
### aliases
## builtins
alias rehash='_sev_setpath; rehash'
alias gu='git pull'
alias gl='git log'
alias gt='git tree' # from gitconfig
-alias gs='git show'
-alias gst='git stash'
+alias gsh='git show'
+alias gst='git status'
+alias gs='git stash'
alias gsp='git stash pop'
## cd/zoxide
function up {
autoload -Uz promptinit && promptinit
prompt arrows
+### plugins
+load-plugins zshrc
+
### load site-specific
load-site-dotfile zshrc