Update zsh and zsh plugins

This commit is contained in:
2026-03-13 06:12:25 +01:00
parent 19933bf58d
commit daa73fbabc
3 changed files with 6 additions and 3 deletions

View File

@@ -15,6 +15,7 @@ zstyle ':omz:update' mode reminder # just remind me to update when it's time
# ENABLE_CORRECTION="true" # ENABLE_CORRECTION="true"
COMPLETION_WAITING_DOTS="true" COMPLETION_WAITING_DOTS="true"
ZSH_DISABLE_COMPFIX="true" ZSH_DISABLE_COMPFIX="true"
ZOXIDE_CMD_OVERRIDE="cd"
plugins=( plugins=(
git git
@@ -26,6 +27,7 @@ plugins=(
command-not-found command-not-found
zsh-autopair zsh-autopair
fast-syntax-highlighting fast-syntax-highlighting
zoxide
) )
bindkey -M vicmd "k" up-line-or-beginning-search bindkey -M vicmd "k" up-line-or-beginning-search
@@ -126,8 +128,9 @@ if (( $+commands[fd] )); then
export FZF_DEFAULT_COMMAND="fd --type f --strip-cwd-prefix" export FZF_DEFAULT_COMMAND="fd --type f --strip-cwd-prefix"
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND" export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
fi fi
if (( $+commands[fzf] )); then if (( $+commands[fzf] )); then
source <(fzf --zsh) # Fix fzf keybind after zsh-vi-mode has loaded
zvm_after_init_commands+=('source <(fzf --zsh)') zvm_after_init_commands+=('source <(fzf --zsh)')
if (( $+commands[paru] )); then if (( $+commands[paru] )); then