dot_testing/bash/profile

17 lines
358 B
Bash

#!/bin/bash
# program exports to keep the $HOME neat and tidy
# bash
export HISTFILE="$HOME/.config/bash/hist"
export HISTFILESIZE=3000
# less
export LESSHISTFILE="-"
# remind
export DOTREMINDERS="$HOME/git/calendar/reminders"
# source the bashrc(s)
[ -f $HOME/.config/bash/bashrc ] && . $HOME/.config/bash/bashrc
[ -f $HOME/.bashrc ] && . $HOME/.bashrc