Merge pull request #255 from dmitmel/master

This commit is contained in:
Keanu Timmermans 2021-05-14 10:02:18 +02:00
commit d2cbad6967
Signed by: keanucode
GPG Key ID: A7431C0D513CA93B
4 changed files with 7 additions and 10 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
*.pyc
node_modules/
.venv
.venv
*.md.html

View File

@ -58,3 +58,6 @@ setopt hist_verify
setopt inc_append_history
# synchronize history between active sessions
setopt share_history
# Among other things, used for compatibility with OMZ plugins.
ZSH_CACHE_DIR="${XDG_CACHE_HOME:-$HOME/.cache}/dotfiles"

View File

@ -1,11 +1,6 @@
#!/usr/bin/env zsh
ZSH_CACHE_DIR="${XDG_CACHE_HOME:-$HOME/.cache}/dotfiles"
if [[ ! -d "$ZSH_CACHE_DIR" ]]; then
mkdir -pv "$ZSH_CACHE_DIR"
fi
source "$ZSH_DOTFILES/zplg.zsh"
mkdir -pv "$ZSH_CACHE_DIR"
_plugin() {
_perf_timer_start "plugin $1"

View File

@ -46,7 +46,7 @@ _perf_timer_start "total"
fi
# }}}
for script in functions options path env plugins aliases completion zle prompt colorscheme; do
for script in functions options path env zplg plugins aliases completion zle prompt colorscheme; do
_perf_timer_start "$script.zsh"
source "$ZSH_DOTFILES/$script.zsh"
_perf_timer_stop "$script.zsh"
@ -60,8 +60,6 @@ if [[ -d "$ZSH_DOTFILES/custom" ]]; then
done
fi
command_exists rbenv && eval "$(rbenv init -)"
_perf_timer_stop "total"
welcome