From 1df0bd1d62f86a48712d9d6b785423323a882cfa Mon Sep 17 00:00:00 2001 From: Yannik Buerkle Date: Fri, 17 May 2024 17:28:04 +0200 Subject: [PATCH] Use zsh completion menu instead of fzf --- .zshrc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.zshrc b/.zshrc index 01fa22c..7b6d35a 100644 --- a/.zshrc +++ b/.zshrc @@ -24,7 +24,6 @@ zinit ice depth=1; zinit light romkatv/powerlevel10k zinit light zsh-users/zsh-syntax-highlighting zinit light zsh-users/zsh-completions zinit light zsh-users/zsh-autosuggestions -zinit light Aloxaf/fzf-tab autoload -Uz compinit; compinit @@ -53,9 +52,8 @@ setopt hist_find_no_dups # Completion styling zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}' zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}" -zstyle ':completion:*' menu no -zstyle ':fzf-tab:complete:cd:*' fzf-preview 'ls --color $realpath' -zstyle ':fzf-tab:complete:__zoxide_z:*' fzf-preview 'ls --color $realpath' +zstyle ':completion:*' menu select +zstyle ':completion:*' file-list all # Aliases alias ls='ls --color'