18 lines
520 B
Bash
18 lines
520 B
Bash
source "$ZDOTDIR/exports.zsh"
|
|
source "$ZDOTDIR/dircolor.zsh"
|
|
|
|
source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh
|
|
|
|
mkdir -p $HOME/.cache/zsh
|
|
autoload -Uz compinit bashcompinit
|
|
compinit -d $HOME/.cache/zsh/compdump
|
|
bashcompinit
|
|
|
|
for file in $ZDOTDIR/libs/*.zsh; do source "$file"; done
|
|
for file in $ZDOTDIR/plgs/*.zsh; do source "$file"; done
|
|
|
|
[[ -f "$ZDOTDIR/local/rc.zsh" ]] && source "$ZDOTDIR/local/rc.zsh"
|
|
|
|
source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
|
|
|
eval "$(starship init zsh)"
|