Removes duplicate fzf script.

This commit is contained in:
2024-09-24 13:01:43 -07:00
parent c34cedc66b
commit 7dbc649489
2 changed files with 2 additions and 18 deletions

4
.zshrc
View File

@@ -21,12 +21,12 @@ for f in ~/.rc.d/*.sh; do
source "$f"
done
# Append personal bin to path
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# Append local personal bin to path
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi