Made the plugin load asyncronously

This commit is contained in:
2024-08-14 09:51:38 +02:00
parent c863538da9
commit 47d150e757
3 changed files with 11 additions and 5 deletions

View File

@ -2,8 +2,10 @@ source "$ZDOTDIR/history.zsh"
source "$ZDOTDIR/alias.zsh"
source "$ZDOTDIR/plugins.zsh"
# Set the initial prompt
PS1="%F{38}[%n@%m %F{45}%B%~%b%f%F{38}]%f$ "
TIMEFMT=$'real\t%E\nuser\t%U\nsys\t%S'
EDITOR="nvim"
ViSUAL_EDITOR="nvim"
# Bind Ctrl-left/right arrow to move back/formward one word
# https://unix.stackexchange.com/a/140499
@ -26,5 +28,6 @@ zstyle ":completion:*" matcher-list "m:{a-z}={A-Za-z}"
eval "$(dircolors)"
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
# Import fzf and zoxide
eval "$(fzf --zsh)"
eval "$(zoxide init --cmd cd zsh)"