I have pretty-simple set as the default printer for my project by putting the following in my .ghci file at the root of the project:
:set -ignore-package pretty-simple -package pretty-simple
:def! pretty \ _ -> pure ":set -interactive-print Text.Pretty.Simple.pPrint"
:pretty
How can I also enable the compact output option for the default printer?
Thanks a lot.