diff --git a/zsh/.zshrc b/zsh/.zshrc index e17d08f..e3baed3 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -23,6 +23,9 @@ for file in $ZDOTDIR/plgs/*.zsh; do source "$file"; done if [[ $os == "arch" ]]; then fzfComp="/usr/share/fzf/completion.zsh" fzfKeyb="/usr/share/fzf/key-bindings.zsh" + if [[ $(hostname) == "megumi" ]]; then + export path=($path /snap/bin) + fi fi if [[ $os == "debian" || $os == "ubuntu" ]]; then @@ -43,3 +46,5 @@ source $ZDOTDIR/tmux/tmux.zsh [[ ! -f $ZDOTDIR/.p10k.zsh ]] || source $ZDOTDIR/.p10k.zsh source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh + +[[ -f $ZDOTDIR/.localrc.zsh ]] && source $ZDOTDIR/.localrc.zsh