Initial commit with core behavior

This commit is contained in:
Luke 2019-10-06 15:47:07 -07:00
commit 8c66602158
12 changed files with 502 additions and 0 deletions

14
misc.sh Normal file
View file

@ -0,0 +1,14 @@
#!/bin/bash
# random things I don't know how to sort
complete -cf sudo
# Include the autojump tool if it exists
if [[ -e /usr/share/autojump/autojump.sh ]]; then
. /usr/share/autojump/autojump.sh
fi
export LESS=R # colorize less output if we use a pipe
HISTSIZE=2000
HISTFILESIZE=10000