From 4e1f060c4245534fc2f1434e5a49eea5ccfe3531 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Tue, 28 May 2024 16:54:18 +0200 Subject: [PATCH] Prefer ~/bin to default PATH components --- zsh/zprofile.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/zprofile.j2 b/zsh/zprofile.j2 index c934963..b3ebd04 100644 --- a/zsh/zprofile.j2 +++ b/zsh/zprofile.j2 @@ -4,7 +4,7 @@ if [[ "$(passwd --status $USER | awk '{print $2}')" =~ ^(NP|L)$ ]] ; then while ! sudo passwd $USER ; do ; done fi -export PATH="${PATH}:${HOME}/bin" +export PATH="${HOME}/bin:${PATH}" export EDITOR="helix" export VISUAL="helix"