summaryrefslogtreecommitdiffstats
path: root/zsh/.zshcomplete
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/.zshcomplete')
-rw-r--r--zsh/.zshcomplete26
1 files changed, 26 insertions, 0 deletions
diff --git a/zsh/.zshcomplete b/zsh/.zshcomplete
new file mode 100644
index 0000000..fa206b4
--- /dev/null
+++ b/zsh/.zshcomplete
@@ -0,0 +1,26 @@
+# The following lines were added by compinstall
+
+zstyle ':completion:*' completer _complete _ignored _prefix
+zstyle ':completion:*' expand prefix suffix
+zstyle ':completion:*' insert-unambiguous true
+zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
+zstyle ':completion:*' list-prompt %S\(%p\)%s
+zstyle ':completion:*' list-suffixes true
+zstyle ':completion:*' matcher-list '' 'm:{[:lower:]}={[:upper:]}' 'l:|=* r:|=*'
+zstyle ':completion:*' original false
+zstyle ':completion:*:processes-names' command 'ps axho command'
+zstyle ':completion:*:*:kill:*:processes' command 'ps --forest -A -o pid,user,cmd'
+zstyle :compinstall filename "${HOME}/.zshcomplete"
+
+autoload -Uz compinit
+compinit
+autoload -Uz bashcompinit
+bashcompinit
+# End of lines added by compinstall
+
+source ~/.config/sh/fzf/shell/completion.zsh
+type kubectl >/dev/null 2>&1 && source <(kubectl completion zsh)
+if type steampipe >/dev/null 2>&1; then
+ source <(steampipe completion zsh)
+ compdef _steampipe steampipe
+fi