Commit 40bf0f9d authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Move .shell/funcs into .shell/lib

parent d9232545
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
# .bash_profile

. ~/.shell/funcs
. ~/.shell/lib/shell-funcs.sh

export BASH_PROFILE_LOADED=1

+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ if [ -z "$BASH_PROFILE_LOADED" ]; then
	return # bash_profile sources this file
fi

. ~/.shell/funcs
. ~/.shell/lib/shell-funcs.sh

USE_PROMPT=yes do_update

+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ BIN=$CARGO_HOME/bin/rustup

test -x $BIN && exec $BIN "$@"

. ~/.shell/funcs
. ~/.shell/lib/shell-funcs.sh

echo >&2 "Bootstrapping Rustup"
echo >&2
+1 −1
Original line number Diff line number Diff line
. ~/.shell/lib/term-setup.sh
. ~/.shell/funcs
. ~/.shell/lib/shell-funcs.sh

if [ -n "${XDG_RUNTIME_DIR-}" ]; then
	export TMUX_TMPDIR=${XDG_RUNTIME_DIR}
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ SERVICE_CTL='systemctl --user'
SERVICE_UNIT=tmux.service


. ~/.shell/funcs
. ~/.shell/lib/shell-funcs.sh

die() {
	code=${CODE-$?}
Loading