cider

A channel dedicated to the Clojure Interactive Development Environment that Rocks (aka CIDER). :cider:
2021-04-24T20:14:20.373300Z

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)