ENH: Reworking old dotfiles to use dotbot

This commit is contained in:
Matthew Ryan Dillon 2017-03-21 11:59:40 -07:00
commit 73c365eb1e
18 changed files with 698 additions and 0 deletions

11
zsh/zlogin Normal file
View file

@ -0,0 +1,11 @@
#
# Executes commands at login post-zshrc.
#
# Execute code that does not affect the current session in the background.
{
# Compile the completion dump to increase startup speed.
zcompdump="${ZDOTDIR:-$HOME}/.zcompdump"
if [[ -s "$zcompdump" && (! -s "${zcompdump}.zwc" || "$zcompdump" -nt "${zcompdump}.zwc") ]]; then
zcompile "$zcompdump"
fi
} &!