From 9490d9e4146e3bd3cbe1f8ce9f0f8b0875adee98 Mon Sep 17 00:00:00 2001 From: Kevin Cotugno Date: Mon, 9 Aug 2021 18:36:54 -0700 Subject: [PATCH] Add .local/bin to path --- .zshrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.zshrc b/.zshrc index 516007a..16318c1 100644 --- a/.zshrc +++ b/.zshrc @@ -67,6 +67,8 @@ if [[ $(command -v fzf) && $(command -v fd) ]]; then export FZF_DEFAULT_COMMAND="fd --type f --hidden --no-ignore --follow --exclude .git" fi +mkdir -p "$HOME/.local/bin" && export PATH="$HOME/.local/bin:$PATH" + function weather() { local loc=$1 if [[ -z "$loc" ]]; then