diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-10-05 11:07:07 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2017-06-01 18:37:35 +0200 |
commit | f534b5ac63c8f27b1f8258d05d8c631fd14f528d (patch) | |
tree | 761f7d496c04c132018bc87d4d4cb69e04b46205 /zsh | |
parent | c06e64a6556f1703f9455ad91299c521ad8b3ed8 (diff) | |
download | dotfiles-f534b5ac63c8f27b1f8258d05d8c631fd14f528d.tar.xz |
zprofile: Set $path instead of $PATH
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zprofile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/zsh/.zprofile b/zsh/.zprofile index 4229906..ddf58ab 100644 --- a/zsh/.zprofile +++ b/zsh/.zprofile @@ -1,4 +1,7 @@ -export PATH="$HOME"/.local/bin:"$HOME"/.gem/ruby/2.1.0/bin:"$PATH" +path=( "$HOME"/.local/bin + "$HOME"/bin + "$HOME"/.gem/ruby/2.1.0/bin + "${path[@]}" ) # Set XDG Basedir Spec paths export XDG_CACHE_HOME="$HOME"/.cache |