config/bash
2018-12-01 22:18:23 -05:00
..
colorize.sh Fix issue where super prompt would fail to delete text due to borked non-printing characters. 2017-05-23 15:59:53 -07:00
emacs.sh Add OS X check to emacs code. 2017-05-26 08:53:03 -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 Add some new aliases. 2018-12-01 22:18:23 -05:00
profile_snippet Make it easier to copy necessary snippet into .bash_profile 2018-03-22 16:07:02 -04:00
README.md Reorganize bash_aliases entirely, add some readme. 2017-03-17 15:36:31 -07:00
super_prompt.sh Add a note about env vars to the super prompt. 2018-02-26 09:58:26 -08: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