config/bash
2017-05-22 10:26:35 -07:00
..
colorize.sh Add new, better prompt. 2017-05-22 10:02:46 -07:00
emacs.sh Reorganize bash_aliases entirely, add some readme. 2017-03-17 15:36:31 -07:00
git-completion.sh Add git auto-completion script from https://github.com/git/git 2017-04-05 09:28:02 -07:00
gpg-up.sh Add gpg convenience script. 2017-03-17 19:16:11 -07:00
misc_aliases.sh Reorganize bash_aliases entirely, add some readme. 2017-03-17 15:36:31 -07:00
README.md Reorganize bash_aliases entirely, add some readme. 2017-03-17 15:36:31 -07:00
super_prompt.sh Refactor super_prompt so that it actually works. 2017-05-22 10:26:35 -07:00

Snippets you can source from your .bash_profile.

To install them all, copy them to ~/.bash.d and add this to your shell init script:

for partial in $(ls ~/.bash.d/*.sh); do
  source $partial
done