From f7a7898c58fac7f90209d020be4755c8948fa9f7 Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Tue, 22 Mar 2022 00:04:49 -0600 Subject: reorganized bash configs --- bash/.bash/00-global.bash | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 bash/.bash/00-global.bash (limited to 'bash/.bash/00-global.bash') diff --git a/bash/.bash/00-global.bash b/bash/.bash/00-global.bash new file mode 100644 index 0000000..38718fb --- /dev/null +++ b/bash/.bash/00-global.bash @@ -0,0 +1,14 @@ +#!/bin/sh +# +# 00-global.bash +# define global bash things +# + +# expand history size +export HISTSIZE=5000 + +# source global definitions +if [ -f /etc/bashrc ]; then + . /etc/bashrc +fi + -- cgit v1.2.3