Make `git status` inside a Docker studio way faster

This setup works in any environment, but is especially valuable in Docker for Mac as the method of connecting to the host filesystem there makes git status painfully slow in large repositories

Just drop this in your .studiorc

echo
echo "--> Optimizing git performance"
hab pkg install jarvus/rs-git-fsmonitor
git config --global core.untrackedCache true
git config --global core.fsmonitor "$(hab pkg path jarvus/rs-git-fsmonitor)/bin/rs-git-fsmonitor"

Hopefully available under the upstream author`s own origin soon: