zsh: leverage declarative installs instead of checking for binaries
Alan Pearce alan@alanpearce.eu
Wed, 17 Jun 2020 12:50:59 +0200
2 files changed, 19 insertions(+), 23 deletions(-)
M user/settings/satoshipay.nix → user/settings/satoshipay.nix
@@ -69,6 +69,13 @@ kns = "kubens"; kx = "kubectx"; klot = "kubetail"; }; + initExtra = '' + if [[ -n $commands[helm] ]] + then + autoload _helm + compdef _helm helm + fi + ''; }; accounts.email.accounts.satoshipay = let
M user/zsh/zshrc → user/zsh/zshrc
@@ -67,14 +67,6 @@ zstyle ':completion:*' matcher-list 'm:{a-zA-Z-_}={A-Za-z_-}' 'r:|=*' 'l:|=* r:|=*' zstyle ':completion:*' completer _expand _complete _match -# Plugins - -if [[ -n $commands[helm] ]] -then - autoload _helm - compdef _helm helm -fi - # General configuration if [[ $TERM == "dumb" ]] @@ -116,23 +108,20 @@ precmd_functions+=(check_kubectl_context) AGKOZAK_CUSTOM_RPROMPT='${prompt_context}%(3V.%F{${AGKOZAK_COLORS_BRANCH_STATUS}%3v%f.)' fi -if [[ -n $commands[fzf] ]] -then - export FZF_CTRL_T_COMMAND=' - (git ls-tree -r --name-only HEAD || - fd --hidden --follow --exclude ".git" . | - sed s/^..//) 2> /dev/null' - export FZF_ALT_C_COMMAND='fd --type d --hidden --follow --exclude ".git" .' - export FZF_DEFAULT_COMMAND=$FZF_CTRL_T_COMMAND +export FZF_CTRL_T_COMMAND=' + (git ls-tree -r --name-only HEAD || + fd --hidden --follow --exclude ".git" . | + sed s/^..//) 2> /dev/null' +export FZF_ALT_C_COMMAND='fd --type d --hidden --follow --exclude ".git" .' +export FZF_DEFAULT_COMMAND=$FZF_CTRL_T_COMMAND - bindkey '^t' transpose-chars - bindkey '^x^f' fzf-file-widget +bindkey '^t' transpose-chars +bindkey '^x^f' fzf-file-widget - zstyle ":anyframe:selector:fzf:" command "fzf --height 40%" +zstyle ":anyframe:selector:fzf:" command "fzf --height 40%" - bindkey '\es' anyframe-widget-cd-ghq-repository - bindkey '\ej' anyframe-widget-cd-ghq-repository - bindkey '^x^k' anyframe-widget-kill -fi +bindkey '\es' anyframe-widget-cd-ghq-repository +bindkey '\ej' anyframe-widget-cd-ghq-repository +bindkey '^x^k' anyframe-widget-kill unsetopt flow_control # Let me use ^S and ^Q