From fa44ab2e45b5691f811ff105891ad86f51b040c1 Mon Sep 17 00:00:00 2001 From: Peter Wood Date: Sat, 29 Nov 2025 09:48:51 -0500 Subject: [PATCH] use $HOME var instead of a hardcoded username --- dotfiles/.zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/.zshrc b/dotfiles/.zshrc index 1528b13..1341e0b 100644 --- a/dotfiles/.zshrc +++ b/dotfiles/.zshrc @@ -3,7 +3,7 @@ export PATH=$PATH:$HOME/.local/bin # Path to your oh-my-zsh installation. -export ZSH="/home/acedanger/.oh-my-zsh" +export ZSH="$HOME/.oh-my-zsh" # Set name of the theme to load --- if set to "random", it will # load a random theme each time oh-my-zsh is loaded, in which case, @@ -117,7 +117,7 @@ load-nvmrc() { add-zsh-hook chpwd load-nvmrc load-nvmrc -[[ -s /home/acedanger/.autojump/etc/profile.d/autojump.sh ]] && source /home/acedanger/.autojump/etc/profile.d/autojump.sh +[[ -s $HOME/.autojump/etc/profile.d/autojump.sh ]] && source $HOME/.autojump/etc/profile.d/autojump.sh # Enable bash completion compatibility in zsh autoload -U +X bashcompinit && bashcompinit