From fedbaf42fc62fc566e093f9aebed4f31931efce6 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Sat, 12 Feb 2022 23:15:43 -0500 Subject: [PATCH] Add $HOME/.local/bin to path --- .zshenv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshenv b/.zshenv index 4f0f2b0..c88f0c6 100644 --- a/.zshenv +++ b/.zshenv @@ -22,7 +22,7 @@ export WINEDLLOVERRIDES=winemenubuilder.exe=d # Don't allow duplicate values in path typeset -U path -path=($HOME/.bin $HOME/.dotfiles/ $path) +path=($HOME/.bin $HOME/.local/bin $HOME/.dotfiles/ $path) # Set temporary files locations if [[ ! -d "$TMPDIR" ]]