From 2a0c7969521143ee98ebd346fbfef1095c283203 Mon Sep 17 00:00:00 2001 From: Dylan De Faoite Date: Sun, 1 Mar 2026 18:23:29 +0000 Subject: [PATCH] fix: hardcoded PATH configs specific to a machine Also removed neofetch --- .zshrc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.zshrc b/.zshrc index bd65c67..be05e25 100644 --- a/.zshrc +++ b/.zshrc @@ -1,8 +1,6 @@ # Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. # Initialization code that may require console input (password prompts, [y/n] # confirmations, etc.) must go above this block; everything else may go below. -[[ -o interactive ]] && neofetch - if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" fi @@ -18,8 +16,8 @@ source ~/powerlevel10k/powerlevel10k.zsh-theme source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh # Path updates -export PATH=/home/dylan/.local/bin:$PATH -export PATH=/home/dylan/.opencode/bin:$PATH +export PATH="$HOME/.local/bin:$PATH" +export PATH="$HOME/.opencode/bin:$PATH" # Env Variables export EDITOR=nvim