2022-02-05 22:58:21 -06:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# program exports to keep the $HOME neat and tidy
|
|
|
|
# bash
|
|
|
|
export HISTFILE="$HOME/.config/bash/hist"
|
|
|
|
export HISTFILESIZE=3000
|
|
|
|
|
|
|
|
# less
|
|
|
|
export LESSHISTFILE="-"
|
|
|
|
|
2022-02-19 17:39:30 -06:00
|
|
|
# remind
|
|
|
|
export DOTREMINDERS="$HOME/git/calendar/reminders"
|
|
|
|
|
2022-02-05 22:58:21 -06:00
|
|
|
# source the bashrc(s)
|
|
|
|
[ -f $HOME/.config/bash/bashrc ] && . $HOME/.config/bash/bashrc
|
|
|
|
[ -f $HOME/.bashrc ] && . $HOME/.bashrc
|