summaryrefslogtreecommitdiff
path: root/zsh/completion.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/completion.zsh')
-rw-r--r--zsh/completion.zsh23
1 files changed, 23 insertions, 0 deletions
diff --git a/zsh/completion.zsh b/zsh/completion.zsh
new file mode 100644
index 0000000..6baf129
--- /dev/null
+++ b/zsh/completion.zsh
@@ -0,0 +1,23 @@
+zstyle ':completion:*' completer _expand _complete _ignored _match _approximate _prefix
+zstyle ':completion:*' completions 1
+zstyle ':completion:*' format 'Completing %d'
+zstyle ':completion:*' glob 1
+zstyle ':completion:*' group-name ''
+zstyle ':completion:*' list-colors ''
+zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s
+zstyle ':completion:*' matcher-list '' 'r:|[._-]=** r:|=**' '+m:{[:lower:]}={[:upper:]}' '+l:|=* r:|=*'
+zstyle ':completion:*' max-errors 2 numeric
+zstyle ':completion:*' menu select=1
+zstyle ':completion:*' prompt 'corrections? (%e)'
+zstyle ':completion:*' select-prompt %SScrolling active: current selection at %p%s
+zstyle ':completion:*' substitute 1
+zstyle ':completion:*' verbose true
+zstyle ':completion:*' use-cache on
+zstyle ':completion:*' cache-path $XDG_CACHE_HOME/zsh
+zstyle ':completion:*:functions' ignored-patterns '_*'
+zstyle ':completion:*:kill:*' force-list always
+zstyle ':completion:*:cd:*' ignore-parents parent pwd
+zstyle :compinstall filename '/home/nick/cfg/zsh/completion.zsh'
+
+autoload -Uz compinit
+compinit