Switch between light and dark themes, depends on your local time. https://github.com/mkaschenko/emacs/blob/master/.emacs.d/elisp/init-solarized-theme.el
it would be cool to mix this with f.lux's LAN api! https://justgetflux.com/news/pages/v4/welcome/
Or redshift
cool, I had something similar but in my case I explicitly removed the current loaded theme before loading a new one using disable-theme
.
Does clojure-lsp have any benefits over clj-kondo + anakondo?
lsp offers refactorings which i don't believe clj-kondo offers. navigation and documentation as well
also, i think anakondo did linear scanning of all completions so it might not be suitable for larger projects. that is from a quick skim once and is not a well-founded opinion, just a first impression
the linear scans through lots of hash maps are in this function: https://github.com/didibus/anakondo/blob/master/anakondo.el#L593
which just calls (hash-table-values hash-table)
.