Configure Linux/MSYS/Git Bash/Cygwin system according to my habits.
./anthonyize
exec bash # Do in each open shell, or restart them.
One could use this repo as a base for their own system customizer. Here are some important files that can be modified easily.
Appends code to the system-wide bashrc
, no matter what exactly it is named.
This is where we call the other scripts, and where we configure the prompt color.
To place your favorite aliases.
Autocompletion of aliases works perfectly under Linux systems that have the bash-completion
(name may vary depending on distro and version) package installed. For systems that don't have it (e.g. Git Bash, sigh), only aliases that consist of a program name (e.g., alias g='git'
) have autocomplete. So alias l='ls -A --color=auto'
would not. Not that it couldn't be done, though.
To configure programs and commands to your taste.
I like having git aliases configured, for example.
To tweak directories, files, etc.
I don't do much here ; I only create ~/Desktop
and ~/Git
if they don't exist.