From 6f8013cb18ff74622f50802fcdffd39b3b72c204 Mon Sep 17 00:00:00 2001 From: Aurel Feer Date: Wed, 7 May 2025 21:15:21 +0200 Subject: [PATCH] add CPATH to envvars --- bash/.bash_profile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bash/.bash_profile b/bash/.bash_profile index 151d743..bf0f16f 100755 --- a/bash/.bash_profile +++ b/bash/.bash_profile @@ -1,4 +1,6 @@ -source ~/.bashrc +if [ -f ~/.bashrc ]; then + source ~/.bashrc +fi export PS1="\[\033[1;31m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ " @@ -6,6 +8,7 @@ export CLICOLOR=1 export LSCOLORS=ExFxBxDxCxegedabagacad export PATH="$PATH":$HOME/.local/bin +export CPATH="$CPATH":$HOME/.local/lib alias ls='ls -AFh --color' alias vim=nvim