I want to try Cider’s overlay option. I understand it looks like Lighttable’s InstaRepl, without the instant evaluation. I cannot get it to work, though, for example M-x cider-use-overlays returns no match.
I am using cider/cider-nrepl 0.11.0 and cider 0.11.0
Here is my Cider config:
(use-package cider
:ensure t
:defer t
:config
(setq nrepl-log-messages t
cider-repl-display-in-current-window t
cider-repl-use-clojure-font-lock t
cider-prompt-save-file-on-load 'always-save
cider-font-lock-dynamically '(macro core function var)
nrepl-hide-special-buffers t
cider-overlays-use-font-lock t)
(cider-repl-toggle-pretty-printing))
What do I need to do to get this to work, please? Also are there any good tutorials on Cider overlay? Thank you for your help.