From 686a737ff9b440227030c48c058a9c84734f14ae Mon Sep 17 00:00:00 2001 From: capntack Date: Wed, 15 Jan 2025 20:12:52 -0600 Subject: [PATCH] Added ~/bin to $PATH --- .zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.zshrc b/.zshrc index 3a0da59..4341427 100644 --- a/.zshrc +++ b/.zshrc @@ -10,6 +10,9 @@ source ~/powerlevel10k/powerlevel10k.zsh-theme # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh +# Path +export PATH=~/bin:$PATH + # Aliases: alias ll='ls -lhF --color=auto' alias la='ls -lahF --color=auto'