From f70de0726d2221195a345b8676ddfb9a714ddb77 Mon Sep 17 00:00:00 2001 From: Badstagram Date: Fri, 12 Dec 2025 22:32:35 +0000 Subject: [PATCH] fix(zsh): use $HOME rather than hard coded path --- dot_zshrc | 2 +- executable_dot_zsh_plugin_loader.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dot_zshrc b/dot_zshrc index 890a9c1..5ce20dd 100644 --- a/dot_zshrc +++ b/dot_zshrc @@ -16,7 +16,7 @@ bindkey -M emacs '^[[1;5D' backward-word # ctrl +  = move cursor to start bindkey -M emacs '^[[1;5C' forward-word # ctrl +  = move cursor to end of next word # fnm -FNM_PATH="/home/bad/.local/share/fnm" +FNM_PATH="$HOME/.local/share/fnm" if [ -d "$FNM_PATH" ]; then export PATH="$FNM_PATH:$PATH" eval "`fnm env`" diff --git a/executable_dot_zsh_plugin_loader.sh b/executable_dot_zsh_plugin_loader.sh index 9318793..d556b90 100644 --- a/executable_dot_zsh_plugin_loader.sh +++ b/executable_dot_zsh_plugin_loader.sh @@ -4,7 +4,7 @@ autoload -U compinit compinit -ZSH_PLUGIN_DIR='/home/bad/.config/zsh-plugins' +ZSH_PLUGIN_DIR="$HOME/.config/zsh-plugins" source "$ZSH_PLUGIN_DIR/zsh-syntax-highlighting/catppuccin_macchiato-zsh-syntax-highlighting.zsh" source "$ZSH_PLUGIN_DIR/git.plugin.zsh" source "$ZSH_PLUGIN_DIR/zsh-autosuggestions/zsh-autosuggestions.zsh"