2016-03-31 02:03:55 +00:00
|
|
|
unsetopt MULTIBYTE
|
|
|
|
|
2017-11-15 23:06:29 +00:00
|
|
|
# Config and cache directory paths
|
2016-09-01 13:16:13 +00:00
|
|
|
CONFIG_DIR="${XDG_CONFIG_HOME:-$HOME/.config}"
|
2017-11-15 23:06:29 +00:00
|
|
|
ZSH_DIR="$CONFIG_DIR/zsh"
|
2018-03-31 12:46:04 +00:00
|
|
|
LOG_DIR="$ZSH_DIR/log"
|
2018-07-30 08:26:31 +00:00
|
|
|
mkdir -p "$LOG_DIR"
|
2017-11-15 23:06:29 +00:00
|
|
|
|
|
|
|
HISTFILE="$ZSH_DIR/histfile"
|
|
|
|
HISTSIZE=999999
|
|
|
|
SAVEHIST=999999
|
2016-03-31 02:03:55 +00:00
|
|
|
|
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
|
2018-04-20 23:15:17 +00:00
|
|
|
if exists tty && tty -s 1>/dev/null 2>/dev/null; then
|
2017-10-03 09:15:34 +00:00
|
|
|
# Resolve at shell runtime
|
|
|
|
export GPG_TTY="$(tty)"
|
|
|
|
fi
|
|
|
|
|
2017-11-15 23:06:29 +00:00
|
|
|
# Set some useful ZSH/Bash options
|
|
|
|
setopt sharehistory 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
|
|
|
# Completion initialisation
|
|
|
|
autoload -U compinit ; compinit
|
|
|
|
autoload -U bashcompinit ; bashcompinit
|
|
|
|
|
|
|
|
# gopass completion
|
2018-03-29 10:15:56 +00:00
|
|
|
if exists gopass; then
|
2017-11-15 23:46:28 +00:00
|
|
|
source <(gopass completion bash)
|
|
|
|
fi
|
|
|
|
|
|
|
|
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
|
|
|
# Pre-load vi-mode edit-command-line before antigen plugins are loaded
|
|
|
|
autoload -z edit-command-line
|
|
|
|
zle -N edit-command-line
|
|
|
|
|
|
|
|
export WORDCHARS='*?_[]~=&;!#$%^(){}'
|
|
|
|
x-bash-backward-kill-word(){ WORDCHARS='' zle kill-word; }
|
|
|
|
zle -N x-bash-backward-kill-word
|
2017-11-15 23:46:28 +00:00
|
|
|
|
2017-11-15 23:06:29 +00:00
|
|
|
# Load antigen & plugins
|
2018-07-30 08:26:31 +00:00
|
|
|
ADOTDIR="$ZSH_DIR/antigen" # Antigen directory
|
|
|
|
ANTIGEN_LOG="$LOG_DIR/antigen-$(date +"%Y_%m_%d_%I_%M_%p").log"
|
2018-03-31 12:46:04 +00:00
|
|
|
antigen_src="$ADOTDIR/antigen.zsh"
|
2017-11-15 23:14:30 +00:00
|
|
|
if [ ! -f "$antigen_src" ]; then
|
2018-03-31 12:46:04 +00:00
|
|
|
git clone https://github.com/zsh-users/antigen.git "$ADOTDIR"
|
2017-11-15 23:14:30 +00:00
|
|
|
fi
|
|
|
|
source "$antigen_src"
|
2017-11-15 23:06:29 +00:00
|
|
|
|
|
|
|
antigen bundle zsh-users/zsh-completions
|
2018-10-01 15:22:03 +00:00
|
|
|
antigen bundle zsh-users/zsh-autosuggestions
|
2018-07-12 09:58:15 +00:00
|
|
|
antigen bundle zsh-users/zsh-history-substring-search
|
2018-11-03 22:44:09 +00:00
|
|
|
antigen bundle zsh-users/zsh-syntax-highlighting@feature/redrawhook
|
2018-04-11 15:42:01 +00:00
|
|
|
antigen bundle mafredri/zsh-async
|
2017-11-15 23:06:29 +00:00
|
|
|
|
|
|
|
antigen apply
|
|
|
|
|
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
|
2016-03-31 02:03:55 +00:00
|
|
|
bindkey '^[^[[3~' x-bash-backward-kill-word
|
|
|
|
bindkey '^[^[[3^' x-bash-backward-kill-word
|
2018-07-12 09:58:15 +00:00
|
|
|
bindkey '^[[A' fzf-history-widget # Up (fzf)
|
|
|
|
bindkey '^[[B' fzf-history-widget # Down (fzf)
|
2019-09-15 10:35:50 +00:00
|
|
|
bindkey '^F' fzf-file-widget # Ctrl+F file search (fzf)
|
2018-07-12 09:58:15 +00:00
|
|
|
bindkey '^[[1;3A' history-substring-search-up # Alt+Up (hsh)
|
|
|
|
bindkey '^[[1;3B' history-substring-search-down # Alt+Down (hsh)
|
2018-10-19 13:45:52 +00:00
|
|
|
|
|
|
|
bindkey "^V" edit-command-line
|
|
|
|
bindkey -M vicmd "^V" edit-command-line
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2016-03-31 02:03:55 +00:00
|
|
|
|
2018-10-19 13:46:19 +00:00
|
|
|
ZSH_AUTOSUGGEST_USE_ASYNC=true
|
2018-07-12 09:58:15 +00:00
|
|
|
ZSH_AUTOSUGGEST_CLEAR_WIDGETS=("${(@)ZSH_AUTOSUGGEST_CLEAR_WIDGETS:#(up|down)-line-or-history}")
|
|
|
|
ZSH_AUTOSUGGEST_CLEAR_WIDGETS+=(history-substring-search-up history-substring-search-down)
|
|
|
|
|
|
|
|
HISTORY_SUBSTRING_SEARCH_FUZZY=true
|
|
|
|
HISTORY_SUBSTRING_SEARCH_ENSURE_UNIQUE=true
|
|
|
|
HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND='underline'
|
2017-10-10 09:59:25 +00:00
|
|
|
|
2018-10-19 13:46:36 +00:00
|
|
|
default='fg=12'
|
|
|
|
prog='fg=blue'
|
2018-10-31 16:47:19 +00:00
|
|
|
ZSH_HIGHLIGHT_STYLES=()
|
2018-10-01 15:22:03 +00:00
|
|
|
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets root line)
|
2018-10-19 13:46:36 +00:00
|
|
|
ZSH_HIGHLIGHT_STYLES[root]='bg=red'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[default]=$default
|
|
|
|
ZSH_HIGHLIGHT_STYLES[arg0]=$prog
|
2016-03-31 02:03:55 +00:00
|
|
|
ZSH_HIGHLIGHT_STYLES[unknown-token]='fg=red,bold'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[reserved-word]='fg=yellow'
|
2018-10-19 13:46:36 +00:00
|
|
|
ZSH_HIGHLIGHT_STYLES[alias]=$prog
|
|
|
|
ZSH_HIGHLIGHT_STYLES[suffix-alias]='fg=green'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[builtin]='fg=4'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[function]=$prog
|
|
|
|
ZSH_HIGHLIGHT_STYLES[command]=$prog
|
|
|
|
ZSH_HIGHLIGHT_STYLES[precommand]='fg=4'
|
2017-11-15 23:06:29 +00:00
|
|
|
ZSH_HIGHLIGHT_STYLES[commandseparator]='fg=cyan'
|
2016-03-31 02:03:55 +00:00
|
|
|
ZSH_HIGHLIGHT_STYLES[hashed-command]='fg=green'
|
2018-10-19 13:46:36 +00:00
|
|
|
ZSH_HIGHLIGHT_STYLES[path]='fg=cyan'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[path_separator]='fg=cyan'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[path_prefix]='fg=208'
|
2016-03-31 02:03:55 +00:00
|
|
|
ZSH_HIGHLIGHT_STYLES[globbing]='fg=red'
|
2017-11-15 23:06:29 +00:00
|
|
|
ZSH_HIGHLIGHT_STYLES[comment]='fg=7'
|
2018-10-19 13:46:36 +00:00
|
|
|
ZSH_HIGHLIGHT_STYLES[history-expansion]=$default
|
|
|
|
ZSH_HIGHLIGHT_STYLES[single-hyphen-option]=$default
|
|
|
|
ZSH_HIGHLIGHT_STYLES[double-hyphen-option]=$default
|
2017-11-15 23:06:29 +00:00
|
|
|
ZSH_HIGHLIGHT_STYLES[back-quoted-argument]='fg=magenta'
|
2016-03-31 02:03:55 +00:00
|
|
|
ZSH_HIGHLIGHT_STYLES[single-quoted-argument]='fg=yellow'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[double-quoted-argument]='fg=yellow'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[dollar-quoted-argument]='fg=yellow'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[dollar-double-quoted-argument]='fg=cyan'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[back-double-quoted-argument]='fg=cyan'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[back-dollar-quoted-argument]='fg=cyan'
|
2017-11-15 23:06:29 +00:00
|
|
|
ZSH_HIGHLIGHT_STYLES[assign]='fg=green'
|
2018-10-19 13:46:36 +00:00
|
|
|
ZSH_HIGHLIGHT_STYLES[redirection]='fg=cyan,bold'
|
2016-03-31 02:03:55 +00:00
|
|
|
|
2017-11-15 23:06:29 +00:00
|
|
|
source "$DOTFILES/aliases"
|
2017-11-16 00:24:10 +00:00
|
|
|
|
2019-09-15 10:36:03 +00:00
|
|
|
# Source secret keys and values into environment
|
|
|
|
if [ -f "$XDG_CONFIG_HOME/secrets" ]; then
|
|
|
|
set -o allexport
|
|
|
|
source $XDG_CONFIG_HOME/secrets
|
|
|
|
set +o allexport
|
|
|
|
fi
|
|
|
|
|
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"
|
2018-04-11 15:42:01 +00:00
|
|
|
[ -f '/usr/share/fzf/key-bindings.zsh' ] && source /usr/share/fzf/key-bindings.zsh
|
2018-10-20 12:40:28 +00:00
|
|
|
[ -f '/usr/share/doc/pkgfile/command-not-found.zsh' ] && source /usr/share/doc/pkgfile/command-not-found.zsh
|
2019-12-14 22:22:53 +00:00
|
|
|
[ -r '/usr/share/z/z.sh' ] && source /usr/share/z/z.sh
|