add configuration files

This commit is contained in:
unset
2025-03-09 16:00:20 +01:00
committed by Quinn
commit 0bff70d604
51 changed files with 6970 additions and 0 deletions

15
.bash_profile Normal file
View File

@@ -0,0 +1,15 @@
#
# ~/.bash_profile
#
# if running bash
[[ -f ~/.bashrc ]] && . ~/.bashrc
# set PATH variables
[[ -d ~/.local/bin ]] && PATH="$PATH:$HOME/.local/bin"
#[[ -d ~/.local/venv/bin ]] && PATH="$PATH:$HOME/.local/venv/bin"
[[ -d ~/.dotnet/tools ]] && PATH="$PATH:$HOME/.dotnet/tools"
# set LD_LIBRARY_PATH variables
#[[ -d ~/.local/venv/lib ]] && LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$HOME/.local/venv/lib"