dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

commit 14c6c4152028a96c5a7f0be8affffd219da0baa1 (patch)
parent bc8a9ea62c5b21b8722759f118d116b2d1640fa0
Author: Alex Karle <alex@alexkarle.com>
Date:   Fri, 26 Jun 2020 23:53:44 -0400

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.

Diffstat:
Msh/shrc | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git 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"