blob: 9b35ff06c3ae52f2b957b1dabbad4b6b4fca5025 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/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
zrclocal
|