From 4b006ebea93d847f3af8d5a8df5d7127cb2c2848 Mon Sep 17 00:00:00 2001 From: Tyrel Souza Date: Mon, 2 Jan 2023 18:47:54 -0500 Subject: [PATCH] fix paths --- home/config/fish/config.fish | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/home/config/fish/config.fish b/home/config/fish/config.fish index c26bb15..e3027ec 100644 --- a/home/config/fish/config.fish +++ b/home/config/fish/config.fish @@ -1,7 +1,9 @@ if status is-interactive - # Commands to run in interactive sessions can go here + set -gx PATH /Users/tyrel/bin $PATH - # Commands to run in interactive sessions can go here + set -x XDG_DATA_HOME "$HOME/.local/share" + set -x XDG_CONFIG_HOME "$HOME/.config" + set -x XDG_STATE_HOME "$HOME/.local/state" set --universal hydro_color_pwd green set --universal hydro_color_git red @@ -9,4 +11,5 @@ if status is-interactive source ~/.config/fish/shell_funcs.fish source ~/.config/fish/shell_aliases.fish source ~/.config/fish/everquote.fish + end