From 21873484254d3c6e1a74a7fecc8f9be154697129 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Wed, 2 Sep 2020 13:43:03 +0200 Subject: [PATCH] [Fish] Change the order of the $PATH variable Custom and local executables will now have the priority over system executables. For instance, an `ls' executable located in `$HOME/.local/bin/ls' will have the priority over `/bin/ls' --- org/config/fish.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org/config/fish.org b/org/config/fish.org index 35ebcce..7a1551e 100644 --- a/org/config/fish.org +++ b/org/config/fish.org @@ -223,7 +223,7 @@ #+BEGIN_SRC fish :noweb yes for p in <> if status is-login - contains $p $PATH || set PATH $PATH $p + contains $p $PATH || set PATH $p $PATH end end #+END_SRC