diff options
Diffstat (limited to 'etc')
-rw-r--r-- | etc/completion | 3 | ||||
-rw-r--r-- | etc/parameters | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/etc/completion b/etc/completion index 4fed4d6..a5eaff0 100644 --- a/etc/completion +++ b/etc/completion @@ -33,4 +33,5 @@ zstyle ':completion:*:*:(todo|td*):*:items' menu yes _hosts() { compadd derf.homelinux.org kraftwerk saviour kappa nemesis aneurysm;} -compinit -C -d var/cache/zsh/compdump +[[ -r $compdump ]] || echo "Re-creating completion cache, please wait..." +compinit -C -d $compdump diff --git a/etc/parameters b/etc/parameters index 12d6f37..79ae4cf 100644 --- a/etc/parameters +++ b/etc/parameters @@ -27,3 +27,4 @@ if [[ -x /usr/bin/lesspipe ]] { # others linux: export LANG=en_US.UTF-8 openbsd: export PKG_PATH="ftp://ftp.freenet.de/pub/ftp.openbsd.org/pub/OpenBSD/`uname -r`/packages/`machine -a`/:ftp://openbsd.ftp.fu-berlin.de/pub/OpenBSD/`uname -r`/packages/`machine -a`/" +compdump='var/cache/zsh/compdump' |