2017-11-15 23:06:29 +00:00
|
|
|
# Config and cache directory paths
|
2020-08-23 15:38:34 +00:00
|
|
|
ZSH_DIR="${ZDOTDIR:-$XDG_CONFIG_HOME/zsh}"
|
2020-08-10 20:58:23 +00:00
|
|
|
LOG_DIR="$XDG_DATA_HOME/logs"
|
|
|
|
HISTFILE="$XDG_DATA_HOME/zsh/history"
|
2017-11-15 23:06:29 +00:00
|
|
|
HISTSIZE=999999
|
|
|
|
SAVEHIST=999999
|
2016-03-31 02:03:55 +00:00
|
|
|
|
2020-08-10 20:58:23 +00:00
|
|
|
mkdir -p "$LOG_DIR" "$(dirname "$HISTFILE")"
|
|
|
|
|
2018-03-29 10:15:56 +00:00
|
|
|
exists() { which $@ 0<&- 1>/dev/null 2>/dev/null; }
|
|
|
|
|
2017-10-03 09:15:34 +00:00
|
|
|
# Only set tty if running interactively
|
2020-03-21 23:24:34 +00:00
|
|
|
if exists tty && tty -s; then
|
2017-10-03 09:15:34 +00:00
|
|
|
# Resolve at shell runtime
|
|
|
|
export GPG_TTY="$(tty)"
|
|
|
|
fi
|
|
|
|
|
2020-03-21 12:49:59 +00:00
|
|
|
# Configure less and add colours
|
2020-03-22 10:28:14 +00:00
|
|
|
export LESS="-RI --mouse --wheel-lines=3"
|
2020-03-21 12:49:59 +00:00
|
|
|
export PAGER="less"
|
|
|
|
export MANPAGER="less -+N"
|
2020-03-22 10:28:14 +00:00
|
|
|
export SYSTEMD_PAGER="less $LESS"
|
2020-03-21 12:49:59 +00:00
|
|
|
# Disable histfile
|
|
|
|
export LESSHISTFILE=-
|
2020-08-10 20:27:13 +00:00
|
|
|
# Use .local/share for z instead of ~/.z
|
|
|
|
export _Z_DATA="$XDG_DATA_HOME/z"
|
2020-03-21 12:49:59 +00:00
|
|
|
|
|
|
|
if exists tput; then
|
|
|
|
export LESS_TERMCAP_mb=$(tput bold; tput setaf 2) # green
|
|
|
|
export LESS_TERMCAP_md=$(tput bold; tput setaf 6) # cyan
|
|
|
|
export LESS_TERMCAP_me=$(tput sgr0)
|
|
|
|
export LESS_TERMCAP_so=$(tput bold; tput setaf 4) # blue
|
|
|
|
export LESS_TERMCAP_se=$(tput rmso; tput sgr0)
|
|
|
|
export LESS_TERMCAP_us=$(tput smul; tput bold; tput setaf 7) # white
|
|
|
|
export LESS_TERMCAP_ue=$(tput rmul; tput sgr0)
|
|
|
|
export LESS_TERMCAP_mr=$(tput rev)
|
|
|
|
export LESS_TERMCAP_mh=$(tput dim)
|
|
|
|
export LESS_TERMCAP_ZN=$(tput ssubm)
|
|
|
|
export LESS_TERMCAP_ZV=$(tput rsubm)
|
|
|
|
export LESS_TERMCAP_ZO=$(tput ssupm)
|
|
|
|
export LESS_TERMCAP_ZW=$(tput rsupm)
|
|
|
|
fi
|
|
|
|
|
2017-11-15 23:06:29 +00:00
|
|
|
# Set some useful ZSH/Bash options
|
2020-08-19 11:28:13 +00:00
|
|
|
setopt sharehistory extendedhistory histignorealldups histignorespace histreduceblanks
|
2018-10-01 15:22:03 +00:00
|
|
|
setopt pathdirs autocd autopushd extendedglob nullglob alwaystoend interactivecomments dvorak
|
2017-11-15 23:06:29 +00:00
|
|
|
|
2017-11-15 23:46:28 +00:00
|
|
|
zstyle ':completion:*:sudo|_::' environ PATH="/sbin:/usr/sbin:$PATH" HOME="/root"
|
|
|
|
zstyle ':completion:*' matcher-list '' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'r:|[._-]=** r:|=**' 'l:|=* r:|=*'
|
|
|
|
zstyle ':completion:*' rehash true
|
|
|
|
zstyle ':completion:*' menu select
|
|
|
|
zstyle ':completion:*' list-colors "${(@s.:.)LS_COLORS}"
|
2018-07-30 08:26:31 +00:00
|
|
|
zstyle ':compinstall' filename "${ZDOTDIR:-~}/.zshrc"
|
2017-11-15 23:46:28 +00:00
|
|
|
|
2018-10-01 15:22:03 +00:00
|
|
|
export WORDCHARS='*?_[]~=&;!#$%^(){}'
|
2017-11-15 23:46:28 +00:00
|
|
|
|
2020-08-23 15:29:58 +00:00
|
|
|
declare -A ZINIT
|
|
|
|
ZINIT[HOME_DIR]="$XDG_CACHE_HOME/zsh/zinit"
|
|
|
|
ZINIT[BIN_DIR]="${ZINIT[HOME_DIR]}/bin"
|
|
|
|
ZINIT[PLUGINS_DIR]="${ZINIT[HOME_DIR]}/plugins"
|
|
|
|
if [ ! -e "${ZINIT[HOME_DIR]}" ]; then
|
2021-11-25 11:12:41 +00:00
|
|
|
git clone https://github.com/zdharma-continuum/zinit.git "${ZINIT[HOME_DIR]}"
|
2017-11-15 23:14:30 +00:00
|
|
|
fi
|
2020-08-23 15:29:58 +00:00
|
|
|
source "${ZINIT[HOME_DIR]}"/zinit.zsh
|
2017-11-15 23:06:29 +00:00
|
|
|
|
2021-11-25 11:12:41 +00:00
|
|
|
zinit wait lucid for \
|
|
|
|
atinit"ZINIT[COMPINIT_OPTS]=-C;zicompinit;zicdreplay" \
|
|
|
|
atload"FAST_HIGHLIGHT[chroma-zinit]=" \
|
|
|
|
zdharma-continuum/fast-syntax-highlighting \
|
|
|
|
blockf \
|
|
|
|
zsh-users/zsh-completions \
|
|
|
|
atload"!_zsh_autosuggest_start" \
|
|
|
|
zsh-users/zsh-autosuggestions
|
2017-11-15 23:06:29 +00:00
|
|
|
|
2020-08-23 15:29:58 +00:00
|
|
|
zinit light agkozak/zsh-z
|
2017-11-15 23:06:29 +00:00
|
|
|
|
2020-08-23 16:12:41 +00:00
|
|
|
zinit ice lucid ver'master' wait'0a' pick'src/bash.command-not-found'
|
|
|
|
zinit light hkbakke/bash-insulter
|
|
|
|
|
2018-07-30 08:28:27 +00:00
|
|
|
# Vim mode!
|
|
|
|
bindkey -v
|
|
|
|
export KEYTIMEOUT=25
|
2017-11-15 23:06:29 +00:00
|
|
|
|
|
|
|
# Set some key-binds
|
|
|
|
bindkey "^[[1;3C" forward-word
|
2017-11-16 00:02:58 +00:00
|
|
|
bindkey "^[[1;5C" forward-word
|
2017-11-15 23:06:29 +00:00
|
|
|
bindkey "^[[1;3D" backward-word
|
2017-11-16 00:02:58 +00:00
|
|
|
bindkey "^[[1;5D" backward-word
|
2016-03-31 02:03:55 +00:00
|
|
|
bindkey "^[[7~" beginning-of-line
|
|
|
|
bindkey "^[[8~" end-of-line
|
2017-12-26 15:42:32 +00:00
|
|
|
bindkey "^[[3~" delete-char
|
|
|
|
bindkey "^[[3;3~" delete-word
|
2018-10-19 13:45:52 +00:00
|
|
|
|
2021-10-18 10:07:48 +00:00
|
|
|
bindkey "^F" fzf-file-widget # Ctrl+F file search (fzf)
|
|
|
|
bindkey "^[[A" fzf-history-widget # Up (fzf)
|
|
|
|
bindkey "^[[B" fzf-history-widget # Down (fzf)
|
|
|
|
bindkey "${terminfo[kcuu1]}" fzf-history-widget # Up (fzf)
|
|
|
|
bindkey "${terminfo[kcud1]}" fzf-history-widget # Down (fzf)
|
2018-10-19 13:45:52 +00:00
|
|
|
|
2021-10-18 10:07:48 +00:00
|
|
|
# Backspace across newlines when in vi-mode
|
|
|
|
bindkey -v '^?' backward-delete-char
|
|
|
|
bindkey -M vicmd "^W" backward-delete-word
|
2018-10-19 13:45:52 +00:00
|
|
|
bindkey -M vicmd d vi-backward-char
|
|
|
|
bindkey -M vicmd h vi-down-line-or-history
|
|
|
|
bindkey -M vicmd t vi-up-line-or-history
|
|
|
|
bindkey -M vicmd n vi-forward-char
|
|
|
|
bindkey -M vicmd k vi-delete
|
|
|
|
bindkey -M vicmd K vi-kill-eol
|
|
|
|
bindkey -M vicmd j vi-find-next-char-skip
|
|
|
|
bindkey -M vicmd l vi-repeat-search
|
|
|
|
|
2021-11-25 11:02:15 +00:00
|
|
|
# Disable all fsh chromas, fixes `zi` being slow
|
|
|
|
FAST_HIGHLIGHT=()
|
|
|
|
|
2018-10-19 13:46:19 +00:00
|
|
|
ZSH_AUTOSUGGEST_USE_ASYNC=true
|
2019-12-15 11:43:49 +00:00
|
|
|
ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE=128
|
2018-07-12 09:58:15 +00:00
|
|
|
ZSH_AUTOSUGGEST_CLEAR_WIDGETS=("${(@)ZSH_AUTOSUGGEST_CLEAR_WIDGETS:#(up|down)-line-or-history}")
|
2017-10-10 09:59:25 +00:00
|
|
|
|
2020-08-11 10:45:48 +00:00
|
|
|
source "$XDG_CONFIG_HOME/aliases"
|
2017-11-16 00:24:10 +00:00
|
|
|
|
|
|
|
# Load some manual plugins
|
|
|
|
source "$ZSH_DIR/plugins/sudo.zsh"
|
|
|
|
source "$ZSH_DIR/plugins/fish-theme.zsh"
|
2018-10-20 12:42:18 +00:00
|
|
|
source "$ZSH_DIR/plugins/git-rprompt.zsh"
|
2020-08-23 11:07:09 +00:00
|
|
|
|
2020-08-23 15:29:58 +00:00
|
|
|
trysource() { for f in "$@"; do source "$f" 2>/dev/null && return; done; }
|
|
|
|
trysource /usr/share/fzf/key-bindings.zsh \
|
|
|
|
/usr/share/doc/fzf/examples/key-bindings.zsh
|
|
|
|
trysource /usr/share/doc/pkgfile/command-not-found.zsh # pkgfile on Arch
|