blob: 29c71022cf321944318d8d414817cf0318cdfeb9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/zsh
autoload -U compinit bashcompinit zrecompile
bashcompinit -i
#zsh_cache=$HOME/.zsh/cache
#mkdir -p "$zsh_cache"
#compinit -d "$zsh_cache/zcomp"
for zshrc_snippet in "$HOME/.zsh/rc/S"[0-9][0-9]* ; do
source "$zshrc_snippet"
done
if [ -f "/etc/zsh_command_not_found" ] ; then
source /etc/zsh_command_not_found
fi
|