This commit is contained in:
nub31
2025-05-07 19:20:06 +02:00
commit 7e1bfbfb2b
22 changed files with 1019 additions and 0 deletions

18
.bashrc-path Normal file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
# bun
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
# nvm
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
# dotnet
export DOTNET_ROOT="$HOME/.dotnet"
export PATH="$DOTNET_ROOT:$PATH"
# tmp
export PATH="$PATH:/home/oliste/repos/nub-lang/src/compiler/Nub.Lang/bin/Release/net9.0/linux-x64/publish"