Begin moving to new XDG compliant directory structure
This commit is contained in:
parent
50c1b6cacb
commit
5e50aafcd0
23 changed files with 27 additions and 8 deletions
13
.config/zsh/30-configure-autocompletion
Normal file
13
.config/zsh/30-configure-autocompletion
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Speed up autocomplete, force prefix mapping
|
||||
zstyle ':completion:*' accept-exact '*(N)'
|
||||
zstyle ':completion:*' use-cache on
|
||||
zstyle ':completion:*' cache-path ~/.zsh/cache
|
||||
zstyle -e ':completion:*:default' list-colors 'reply=("${PREFIX:+=(#bi)($PREFIX:t)*==34=34}:${(s.:.)LS_COLORS}")';
|
||||
|
||||
# Load any custom zsh completions we've installed
|
||||
if [ -d ~/.zsh-completions ]; then
|
||||
for completion in ~/.zsh-completions/*
|
||||
do
|
||||
source "$completion"
|
||||
done
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue