How would I configure it so get expound formatted spec error messages in the cider-error buffer rather then the long form spec messages? I have ran set up my project this way so far:
....
(:require [expound.alpha :as expound]
[clojure.spec.alpha :as s])
(binding [s/*explain-out* expound/printer]
(s/assert :example.place/city 1))
(set! s/*explain-out* expound/printer)