diff --git a/copy/zshenv b/copy/zshenv index eaf57b8..594f255 100644 --- a/copy/zshenv +++ b/copy/zshenv @@ -3,4 +3,4 @@ export ZDOTDIR='/home/eeleater/.config/dotfiles/zsh' export EDITOR='nano' export THEME='starship' -source "$ZDOTDIR/localenv.zsh" +source "$ZDOTDIR/local/env.zsh" diff --git a/zsh/.zshrc b/zsh/.zshrc index ec67b92..bbe1cb9 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -2,13 +2,13 @@ if [ "$THEME" = "powerlevel" ]; then [[ -r "$HOME/.cache/p10k-instant-prompt-${(%):-%n}.zsh" ]] && source "$HOME/.cache/p10k-instant-prompt-${(%):-%n}.zsh" fi -source $ZDOTDIR/exports.zsh -source $ZDOTDIR/dircolor.zsh +source "$ZDOTDIR/exports.zsh" +source "$ZDOTDIR/dircolor.zsh" source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh if [ "$THEME" = "powerlevel" ]; then - source $HOME/.config/p10k/powerlevel10k.zsh-theme + source "$HOME/.config/p10k/powerlevel10k.zsh-theme" fi autoload -Uz compinit bashcompinit @@ -18,8 +18,8 @@ bashcompinit for file in $ZDOTDIR/libs/*.zsh; do source "$file"; done for file in $ZDOTDIR/plgs/*.zsh; do source "$file"; done -[[ -f $ZDOTDIR/.localrc.zsh ]] && source $ZDOTDIR/.localrc.zsh -[[ -f $ZDOTDIR/.p10k.zsh ]] && source $ZDOTDIR/.p10k.zsh +[[ -f "$ZDOTDIR/local/rc.zsh" ]] && source "$ZDOTDIR/local/rc.zsh" +[[ -f "$ZDOTDIR/.p10k.zsh" ]] && source "$ZDOTDIR/.p10k.zsh" source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh