dot_testing/bash/profile

20 lines
424 B
Plaintext
Raw Normal View History

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
2022-06-18 15:41:52 -05:00
# python
export PYTHONSTARTUP="$HOME/.config/python/pythonrc.py"
2022-02-05 22:58:21 -06:00
# less
export LESSHISTFILE="-"
# 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