Adds some import only files or comparison.

This commit is contained in:
2026-09-03 16:03:30 -07:00
parent 2ab2c2fb08
commit 467180c7c7
3 changed files with 20 additions and 0 deletions

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"