From c101e3f2ca6220d67af511d6267acf79c90c8fd0 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Wed, 17 Jan 2024 00:47:54 -0800 Subject: [PATCH] zsh: update completions - removed some of my own, reenabled manjaro's --- .zshrc | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.zshrc b/.zshrc index e9abaed..558ebeb 100644 --- a/.zshrc +++ b/.zshrc @@ -135,27 +135,27 @@ alias nix='noglob nix' zstyle ':completion:*' completer _expand _complete _ignored _correct _approximate zstyle ':completion:*' completions 1 zstyle ':completion:*' expand prefix suffix - zstyle ':completion:*' format 'Completing %d' + # zstyle ':completion:*' format 'Completing %d' zstyle ':completion:*' glob 1 zstyle ':completion:*' group-name '' zstyle ':completion:*' ignore-parents parent pwd .. - zstyle ':completion:*' insert-unambiguous true + # zstyle ':completion:*' insert-unambiguous true zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS} - zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s + # zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s zstyle ':completion:*' list-suffixes true - zstyle ':completion:*' matcher-list '' 'm:{[:lower:]}={[:upper:]}' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'r:|[._-]=** r:|=**' + # zstyle ':completion:*' matcher-list '' 'm:{[:lower:]}={[:upper:]}' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'r:|[._-]=** r:|=**' zstyle ':completion:*' max-errors 1 not-numeric - zstyle ':completion:*' menu select=0 - zstyle ':completion:*' original false - zstyle ':completion:*' prompt 'Select a correction (%e)' - zstyle ':completion:*' select-prompt %SScrolling active: current selection at %p%s - zstyle ':completion:*' substitute 1 - zstyle ':completion:*' verbose true + # zstyle ':completion:*' menu select=0 + # zstyle ':completion:*' original false + # zstyle ':completion:*' prompt 'Select a correction (%e)' + # zstyle ':completion:*' select-prompt %SScrolling active: current selection at %p%s + # zstyle ':completion:*' substitute 1 + # zstyle ':completion:*' verbose true zstyle :compinstall filename '/home/blake/.zshrc' # Manjaro's - # zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' # Case insensitive tab completion - # zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}" # Colored completion (different colors for dirs/files/etc) + zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' # Case insensitive tab completion + zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}" # Colored completion (different colors for dirs/files/etc) zstyle ':completion:*' rehash true # automatically find new executables in path # Speed up completions zstyle ':completion:*' accept-exact '*(N)'