2021-02-09 02:10:11 +01:00
|
|
|
|
2021-02-09 01:33:59 +01:00
|
|
|
# Start configuration added by Zim install {{{
|
2019-02-11 13:49:12 +01:00
|
|
|
#
|
|
|
|
# User configuration sourced by interactive shells
|
|
|
|
#
|
|
|
|
|
2021-02-09 01:33:59 +01:00
|
|
|
# -----------------
|
|
|
|
# Zsh configuration
|
|
|
|
# -----------------
|
2019-02-11 13:49:12 +01:00
|
|
|
|
2021-02-09 01:33:59 +01:00
|
|
|
#
|
|
|
|
# History
|
|
|
|
#
|
|
|
|
|
|
|
|
# Remove older command from the history if a duplicate is to be added.
|
|
|
|
setopt HIST_IGNORE_ALL_DUPS
|
|
|
|
|
|
|
|
#
|
|
|
|
# Input/output
|
|
|
|
#
|
|
|
|
|
|
|
|
# Set editor default keymap to emacs (`-e`) or vi (`-v`)
|
|
|
|
bindkey -e
|
|
|
|
|
|
|
|
# Prompt for spelling correction of commands.
|
|
|
|
#setopt CORRECT
|
|
|
|
|
|
|
|
# Customize spelling correction prompt.
|
|
|
|
#SPROMPT='zsh: correct %F{red}%R%f to %F{green}%r%f [nyae]? '
|
|
|
|
|
|
|
|
# Remove path separator from WORDCHARS.
|
|
|
|
WORDCHARS=${WORDCHARS//[\/]}
|
|
|
|
|
2022-03-26 23:56:09 +01:00
|
|
|
export ZIM_HOME=$HOME/.zim
|
|
|
|
|
2021-02-09 01:33:59 +01:00
|
|
|
|
|
|
|
# --------------------
|
|
|
|
# Module configuration
|
|
|
|
# --------------------
|
|
|
|
|
|
|
|
#
|
|
|
|
# completion
|
|
|
|
#
|
|
|
|
|
|
|
|
# Set a custom path for the completion dump file.
|
|
|
|
# If none is provided, the default ${ZDOTDIR:-${HOME}}/.zcompdump is used.
|
|
|
|
#zstyle ':zim:completion' dumpfile "${ZDOTDIR:-${HOME}}/.zcompdump-${ZSH_VERSION}"
|
|
|
|
|
|
|
|
#
|
|
|
|
# git
|
|
|
|
#
|
|
|
|
|
|
|
|
# Set a custom prefix for the generated aliases. The default prefix is 'G'.
|
|
|
|
#zstyle ':zim:git' aliases-prefix 'g'
|
|
|
|
|
|
|
|
#
|
|
|
|
# input
|
|
|
|
#
|
|
|
|
|
|
|
|
# Append `../` to your input for each `.` you type after an initial `..`
|
|
|
|
#zstyle ':zim:input' double-dot-expand yes
|
|
|
|
|
|
|
|
#
|
|
|
|
# termtitle
|
|
|
|
#
|
|
|
|
|
|
|
|
# Set a custom terminal title format using prompt expansion escape sequences.
|
|
|
|
# See http://zsh.sourceforge.net/Doc/Release/Prompt-Expansion.html#Simple-Prompt-Escapes
|
|
|
|
# If none is provided, the default '%n@%m: %~' is used.
|
|
|
|
#zstyle ':zim:termtitle' format '%1~'
|
|
|
|
|
|
|
|
#
|
|
|
|
# zsh-autosuggestions
|
|
|
|
#
|
|
|
|
|
|
|
|
# Customize the style that the suggestions are shown with.
|
|
|
|
# See https://github.com/zsh-users/zsh-autosuggestions/blob/master/README.md#suggestion-highlight-style
|
|
|
|
#ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=10'
|
|
|
|
|
|
|
|
#
|
|
|
|
# zsh-syntax-highlighting
|
|
|
|
#
|
|
|
|
|
|
|
|
# Set what highlighters will be used.
|
|
|
|
# See https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/docs/highlighters.md
|
|
|
|
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets)
|
|
|
|
|
|
|
|
# Customize the main highlighter styles.
|
|
|
|
# See https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/docs/highlighters/main.md#how-to-tweak-it
|
|
|
|
#typeset -A ZSH_HIGHLIGHT_STYLES
|
|
|
|
#ZSH_HIGHLIGHT_STYLES[comment]='fg=10'
|
|
|
|
|
|
|
|
# ------------------
|
|
|
|
# Initialize modules
|
|
|
|
# ------------------
|
|
|
|
|
|
|
|
if [[ ! ${ZIM_HOME}/init.zsh -nt ${ZDOTDIR:-${HOME}}/.zimrc ]]; then
|
|
|
|
# Update static initialization script if it does not exist or it's outdated, before sourcing it
|
|
|
|
source ${ZIM_HOME}/zimfw.zsh init -q
|
|
|
|
fi
|
|
|
|
source ${ZIM_HOME}/init.zsh
|
|
|
|
|
|
|
|
# ------------------------------
|
|
|
|
# Post-init module configuration
|
|
|
|
# ------------------------------
|
|
|
|
|
|
|
|
#
|
|
|
|
# zsh-history-substring-search
|
|
|
|
#
|
|
|
|
|
|
|
|
# Bind ^[[A/^[[B manually so up/down works both before and after zle-line-init
|
|
|
|
bindkey '^[[A' history-substring-search-up
|
|
|
|
bindkey '^[[B' history-substring-search-down
|
|
|
|
|
|
|
|
# Bind up and down keys
|
|
|
|
zmodload -F zsh/terminfo +p:terminfo
|
|
|
|
if [[ -n ${terminfo[kcuu1]} && -n ${terminfo[kcud1]} ]]; then
|
|
|
|
bindkey ${terminfo[kcuu1]} history-substring-search-up
|
|
|
|
bindkey ${terminfo[kcud1]} history-substring-search-down
|
|
|
|
fi
|
|
|
|
|
|
|
|
bindkey '^P' history-substring-search-up
|
|
|
|
bindkey '^N' history-substring-search-down
|
|
|
|
bindkey -M vicmd 'k' history-substring-search-up
|
|
|
|
bindkey -M vicmd 'j' history-substring-search-down
|
|
|
|
# }}} End configuration added by Zim install
|
2019-02-11 21:29:16 +01:00
|
|
|
|
|
|
|
export FZF_DEFAULT_COMMAND='fd --type f'
|
2019-02-11 13:49:12 +01:00
|
|
|
source /usr/share/fzf/completion.zsh
|
|
|
|
source /usr/share/fzf/key-bindings.zsh
|
2021-02-12 17:26:14 +01:00
|
|
|
|
2019-02-17 12:04:04 +01:00
|
|
|
alias pdfdiff="diffpdf"
|
2021-02-12 17:26:14 +01:00
|
|
|
alias cb="xclip -sel clipboard"
|
2021-04-08 05:39:49 +02:00
|
|
|
alias vi="nvim"
|
|
|
|
alias vim="nvim"
|
2021-04-05 01:47:56 +02:00
|
|
|
alias ls="exa"
|
2019-04-13 17:34:22 +02:00
|
|
|
|
2021-02-09 02:48:42 +01:00
|
|
|
# GPG for SSH
|
|
|
|
export GPG_TTY="$(tty)"
|
|
|
|
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
|
|
|
|
gpgconf --launch gpg-agent
|
|
|
|
|
2021-02-12 17:26:14 +01:00
|
|
|
# Editor
|
|
|
|
export EDITOR=vim
|
|
|
|
|
2021-11-18 14:41:37 +01:00
|
|
|
export PATH="$HOME/.jenv/bin:$PATH"
|
|
|
|
eval "$(jenv init -)"
|
|
|
|
|
2022-06-20 15:57:56 +02:00
|
|
|
eval "$(direnv hook zsh)"
|
|
|
|
|
2022-03-16 23:36:19 +01:00
|
|
|
export PATH="$PATH:$HOME/.local/bin"
|
2021-11-18 14:41:37 +01:00
|
|
|
export TERM=xterm-256color
|
2022-06-01 19:09:59 +02:00
|
|
|
alias light="mqtt pub -t cmnd/Workbench/POWER -m "
|
2022-06-01 19:10:21 +02:00
|
|
|
|
|
|
|
autoload -Uz compinit; compinit
|
|
|
|
source /usr/share/fzf-tab-completion/zsh/fzf-zsh-completion.sh
|
|
|
|
bindkey '^I' fzf_completion
|
2022-06-01 19:13:02 +02:00
|
|
|
source =(thefuck -a)
|
2022-06-01 19:13:31 +02:00
|
|
|
|
|
|
|
source =(hcloud completion zsh)
|
|
|
|
source =(kubectl completion zsh)
|
|
|
|
source =(kubectl completion zsh | sed 's/kubectl/k/g')
|
|
|
|
alias k="kubectl"
|
|
|
|
source =(helm completion zsh)
|
|
|
|
export KUBECONFIG="$HOME/.kube/config"
|
2022-06-01 19:13:54 +02:00
|
|
|
|
|
|
|
alias gl="git lg"
|
|
|
|
alias gs="git status"
|
|
|
|
alias gd="git diff"
|
2022-06-20 15:57:56 +02:00
|
|
|
alias gds="git diff --staged"
|
2022-06-01 19:13:54 +02:00
|
|
|
alias gc="git commit"
|
2022-06-20 15:57:56 +02:00
|
|
|
alias gcf="git commit --fixup=@"
|
|
|
|
alias ga="git add"
|
2022-06-01 19:13:54 +02:00
|
|
|
alias gp="git push"
|
2022-06-20 15:57:56 +02:00
|
|
|
|