From 7016410f973288339d2065e941c3a86ec4992a36 Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Mon, 12 Jul 2021 11:22:07 -0500 Subject: [PATCH] stopped adding ~/scripts to $PATH. added /opt to $PATH. --- zsh/.zshrc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index 7b9ab74..4b0c6d6 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -18,8 +18,7 @@ #test that these nonstandard paths exist before adding to PATH. testPath="$HOME/.local/bin" [ -d "$testPath" ] && export PATH="$PATH:$testPath" - testPath="$HOME/scripts" - [ -d "$testPath" ] && export PATH="$PATH:$testPath" + export PATH="$PATH:/opt" #set default editor and pager. export EDITOR=nvim export VISUAL=nvim