add CPATH to envvars

This commit is contained in:
Aurel Feer 2025-05-07 21:15:21 +02:00
parent 29b15cdb41
commit 6f8013cb18

View File

@ -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