Updates reference config with a bunch of os and shell safety. #1

Merged
maj merged 6 commits from machines/spider into main 2026-09-04 00:19:08 +00:00
3 changed files with 20 additions and 0 deletions
Showing only changes of commit 467180c7c7 - Show all commits

12
.bashrc
View File

@@ -75,6 +75,7 @@ esac
## Begin .rc.d stuff ## Begin .rc.d stuff
PATH="/home/tom/Android/android-studio/bin:$PATH"
## Source all scripts in ~/.rc.d ## Source all scripts in ~/.rc.d
for f in ~/.rc.d/*.sh; do for f in ~/.rc.d/*.sh; do
source "$f" source "$f"
@@ -108,3 +109,14 @@ fi
# PATH="$HOME/.local/bin:$PATH" # PATH="$HOME/.local/bin:$PATH"
# fi # fi
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# Load Angular CLI autocompletion.
source <(ng completion script)
# Initialize profile environment
[ -f "$HOME/.init_profile" ] && . "$HOME/.init_profile"

5
.yarnrc Normal file
View File

@@ -0,0 +1,5 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
lastUpdateCheck 1768790207834

3
.zshrc
View File

@@ -46,3 +46,6 @@ SAVEHIST=10000
# zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31' # zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31'
# zstyle ':completion:*:kill:*' command 'ps -u $USER -o pid,%cpu,tty,cputime,cmd' # zstyle ':completion:*:kill:*' command 'ps -u $USER -o pid,%cpu,tty,cputime,cmd'
# Initialize profile environment
[ -f "$HOME/.init_profile" ] && . "$HOME/.init_profile"