1
0
Fork 0
numbers/zsh/.zlogin

9 lines
313 B
Bash

# Execute code that does not affect the current session in the background.
{
# Compile the completion dump to increase startup speed.
zcompdump="$XDG_CACHE_HOME/zcompdump"
if [[ -s "$zcompdump" && (! -s "${zcompdump}.zwc" || "$zcompdump" -nt "${zcompdump}.zwc") ]]; then
zcompile "$zcompdump"
fi
} &!