ENH: Reworking old dotfiles to use dotbot
This commit is contained in:
commit
73c365eb1e
18 changed files with 698 additions and 0 deletions
11
zsh/zlogin
Normal file
11
zsh/zlogin
Normal 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
|
||||
} &!
|
Loading…
Add table
Add a link
Reference in a new issue