From 12ef20f681644c8bd1b09831b5a7f91957625986 Mon Sep 17 00:00:00 2001 From: David Thurstenson Date: Fri, 17 May 2019 16:25:35 -0500 Subject: [PATCH] Remove local bashrc function. If this functionality is needed, put an untracked script into ~/.bashrc.d/ instead. --- .bashrc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.bashrc b/.bashrc index 9fe3892..e5fd0bd 100644 --- a/.bashrc +++ b/.bashrc @@ -37,9 +37,3 @@ fi # This way all my useful little utilities are easier to reference and fix # shellcheck source=/dev/null for f in ~/.bashrc.d/*.sh; do source "$f"; done - - -# Source a local bashrc if it exists. This gives the ability to insert untracked -# modifications to this .bashrc -# shellcheck source=/dev/null -[[ -s ~/.local.bashrc ]] && source ~/.local.bashrc