diff --git a/.local/share/zsh/plugins/local/common/dotfiles_edit.zsh b/.local/share/zsh/plugins/local/common/dotfiles_edit.zsh index 005b8d09..1cbb1eb9 100755 --- a/.local/share/zsh/plugins/local/common/dotfiles_edit.zsh +++ b/.local/share/zsh/plugins/local/common/dotfiles_edit.zsh @@ -144,7 +144,7 @@ dfpe() { fi # Call dfe with flags and transformed file argument - dfe "${flags[@]}" "plugins/$file.plugin" + dfe "${flags[@]}" ".local/share/zsh/plugins/local/$file.plugin" return $? } @@ -174,6 +174,6 @@ dfps() { fi # Call dfs with flags and transformed file argument - dfs "${flags[@]}" "plugins/$file" + dfs "${flags[@]}" ".local/share/zsh/plugins/local/$file" return $? } diff --git a/_plugins/motd/10-logo b/_plugins/motd/10-logo index ee7738d3..77c741fd 100755 --- a/_plugins/motd/10-logo +++ b/_plugins/motd/10-logo @@ -1,7 +1,7 @@ #!/usr/bin/env zsh source "$DOTFILES/aliases.zsh" -source $DOTFILES/_plugins/ascii_font/ascii_font.plugin.zsh +source $HOME/.local/share/zsh/plugins/local/ascii_font/ascii_font.plugin.zsh if [[ $(hostname) == 'spider.casraf.dev' || $(hostname) == 'spider' ]]; then text='spider' diff --git a/aliases.zsh b/aliases.zsh index f452bcad..4a516232 100755 --- a/aliases.zsh +++ b/aliases.zsh @@ -15,7 +15,7 @@ addalias() { source "$HOME/.dotfiles/aliases.zsh" } -source "$HOME/.dotfiles/plugins/common/os_utils.zsh" +source "$HOME/.local/share/zsh/plugins/local/common/os_utils.zsh" # navigation alias ".."="cd .."