[zsh] Load custom folder.

This commit is contained in:
Keanu Timmermans 2021-05-10 19:32:38 +02:00
parent 6ebac00f43
commit be27b811f7
Signed by: keanucode
GPG Key ID: A7431C0D513CA93B
1 changed files with 6 additions and 0 deletions

View File

@ -52,6 +52,12 @@ for script in functions options path env plugins aliases completion zle prompt c
_perf_timer_stop "$script.zsh"
done
for script in $ZSH_DOTFILES/custom/**; do
_perf_timer_start "$script"
source "$script"
_perf_timer_stop "$script"
done
command_exists rbenv && eval "$(rbenv init -)"
_perf_timer_stop "total"