config/bash
2017-12-19 14:40:19 -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 Better arduino serial option. 2017-12-19 14:40:19 -05:00
README.md Reorganize bash_aliases entirely, add some readme. 2017-03-17 15:36:31 -07:00
super_prompt.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

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