config/bash
2025-07-30 12:58:30 -04:00
..
colorize.sh Update bash scripts. 2025-07-30 12:22:46 -04:00
docker-remote.sh Better docker config. 2025-07-30 12:58:30 -04: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
misc_aliases.sh Update bash scripts. 2025-07-30 12:22:46 -04:00
README.md Update bash scripts. 2025-07-30 12:22:46 -04:00
starship.sh Update bash scripts. 2025-07-30 12:22:46 -04: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

You may also want to ensure you have this near the top of your bashrc, to avoid executing all of these scripts for every non-interactive bash script:

[[ $- != *i* ]] && return