From 467180c7c7f963d9aac335854a723d82ca651848 Mon Sep 17 00:00:00 2001 From: Tom Hicks Date: Thu, 3 Sep 2026 16:03:30 -0700 Subject: [PATCH] Adds some import only files or comparison. --- .bashrc | 12 ++++++++++++ .yarnrc | 5 +++++ .zshrc | 3 +++ 3 files changed, 20 insertions(+) create mode 100644 .yarnrc diff --git a/.bashrc b/.bashrc index 053b63b..976eb27 100644 --- a/.bashrc +++ b/.bashrc @@ -75,6 +75,7 @@ esac ## Begin .rc.d stuff +PATH="/home/tom/Android/android-studio/bin:$PATH" ## Source all scripts in ~/.rc.d for f in ~/.rc.d/*.sh; do source "$f" @@ -108,3 +109,14 @@ fi # PATH="$HOME/.local/bin:$PATH" # 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" diff --git a/.yarnrc b/.yarnrc new file mode 100644 index 0000000..62d7557 --- /dev/null +++ b/.yarnrc @@ -0,0 +1,5 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +lastUpdateCheck 1768790207834 diff --git a/.zshrc b/.zshrc index a2e73b3..7ee3e8c 100644 --- a/.zshrc +++ b/.zshrc @@ -46,3 +46,6 @@ SAVEHIST=10000 # 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' + +# Initialize profile environment +[ -f "$HOME/.init_profile" ] && . "$HOME/.init_profile"