From 14c6c4152028a96c5a7f0be8affffd219da0baa1 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Fri, 26 Jun 2020 23:53:44 -0400 Subject: [PATCH] sh: Add include statement for site-local shell config On each of my computers, I usually have 1-2 lines that don't get source controlled (and have been just perpetually git-stashed/popped on each upgrade). Moving these to a "site-local" shell setup file saves the need to do that stash/pop. --- sh/shrc | 1 + 1 file changed, 1 insertion(+) diff --git a/sh/shrc b/sh/shrc index 9229cb6..aeda015 100755 --- a/sh/shrc +++ b/sh/shrc @@ -25,3 +25,4 @@ PS1='$(last_err)[${USER}@${HOSTNAME}]\$ ' # Includes [ -r "$HOME/.aliases" ] && . "$HOME/.aliases" +[ -r "$HOME/.shrc.local" ] && . "$HOME/.shrc.local" -- libgit2 0.28.4