From 7547e363209c47a3a915e21fc8b8c948d8f4f14b Mon Sep 17 00:00:00 2001 From: hedy Date: Tue, 15 Aug 2023 21:09:28 +0800 Subject: [PATCH] Add sourcing .exportenvs to .startup.sh, update .gitignore_global for *.tags --- .gitignore_global | 1 + .startup.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore_global b/.gitignore_global index 9b5ec25..aeefe1d 100644 --- a/.gitignore_global +++ b/.gitignore_global @@ -2,3 +2,4 @@ # vim-obsession Session.vim .DS_Store +*.tags diff --git a/.startup.sh b/.startup.sh index 33fc6ba..8d8aa2a 100644 --- a/.startup.sh +++ b/.startup.sh @@ -35,3 +35,4 @@ fi # ^ Above is commented because it's already in ~/.exportenvs # Load (the) nvm [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" +[ -s "$HOME/.exportenvs" ] && \. "$HOME/.exportenvs"