2022-02-17: SBCL Settings

I've been playing with my dotfiles again... in particular the ones for getting SBCL (the Lisp compiler of choice) up and running with various package managers and settings.

Obviously the *first* thing to do is to get it so that everything is debugable by default... having to go and up the optimization level manually is a drag and computers are fast:

Oh and SBCL has a better prompt (well... a more Slime-y one) so we can turn that on too:

And then there's Quicklisp: the defacto package manager for most Lisp people. Normally you go and install it manually and add a couple of lines to your `.sbclrc` to load it... but lets automate that so it gets installed on first run instead!

A couple of macros to run programs (without resorting to libraries):

Then if Quicklisp isn't already available download and install it... else load it.

I couldn't quite get SBCL to run and load the `quicklisp.lisp` installer itself (it'd complain about the `quicklisp-quickstart` package being missing) so I instead re-run SBCL and crash out this time. Sure it could be better but its quite neat and saves a job every time I change OS! Neat-o!