aboutsummaryrefslogtreecommitdiff
path: root/config/all/zsh/50-completion.zsh
diff options
context:
space:
mode:
authorMatt Singleton <matt@xcolour.net>2024-04-11 16:21:15 -0500
committerMatt Singleton <matt@xcolour.net>2024-04-11 16:21:15 -0500
commitf2dfde23f8157da1532a2b2e236af529fed47713 (patch)
treed5eabb0eb33d100304ee16596b2a43dfb4a68d1c /config/all/zsh/50-completion.zsh
parent7f67d28e18760154778f20da43772838c36734ed (diff)
replace janky deploy script with stow and make
re-orgs all the console oriented dotfiles to be stowable makefile to deploy everything move from vimplug to native vim packages cleanup script for blowing away old symlinks
Diffstat (limited to 'config/all/zsh/50-completion.zsh')
-rw-r--r--config/all/zsh/50-completion.zsh27
1 files changed, 0 insertions, 27 deletions
diff --git a/config/all/zsh/50-completion.zsh b/config/all/zsh/50-completion.zsh
deleted file mode 100644
index 23cb052..0000000
--- a/config/all/zsh/50-completion.zsh
+++ /dev/null
@@ -1,27 +0,0 @@
-# initialize the completion system
-autoload -U compinit
-compinit -d "${XDG_CACHE_HOME:-${HOME}/.cache}/zsh/zcompdump"
-zmodload zsh/complist
-
-# complete only after the second consecutive tab
-setopt auto_menu
-
-# use GNU ls color specification for completion menu
-zstyle ':completion:*:default' list-colors ${(s.:.)LS_COLORS}
-
-# use menu selection by default
-zstyle ':completion:*:default' menu select
-
-# disable named-directories autocompletion
-zstyle ':completion:*:cd:*' tag-order local-directories directory-stack path-directories
-cdpath=(.)
-
-# don't autocomplete local users for (ssh|ftp|scp|rsync)
-zstyle ':completion:*:*:(ssh|ftp|scp|rsync):*' users
-
-# Use caching so that commands like apt and dpkg complete are useable
-zstyle ':completion::complete:*' use-cache 1
-zstyle ':completion:*' cache-path "${XDG_CACHE_HOME:-${HOME}/.cache}/zsh/zcompcache"
-
-# always rehash commands list
-zstyle ':completion:*:commands' rehash 1