emacs

Consider also joining #cider, #lsp and #inf-clojure, where most of the tool-specific discussions are happening.
Maxim 2020-06-08T01:45:27.373700Z

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

2020-06-08T13:35:00.375300Z

it would be cool to mix this with f.lux's LAN api! https://justgetflux.com/news/pages/v4/welcome/

gammarray 2020-06-09T11:55:33.380900Z

Or redshift

bartuka 2020-06-08T03:40:41.375Z

cool, I had something similar but in my case I explicitly removed the current loaded theme before loading a new one using disable-theme.

2020-06-08T21:09:18.376200Z

Does clojure-lsp have any benefits over clj-kondo + anakondo?

dpsutton 2020-06-08T21:13:02.376700Z

lsp offers refactorings which i don't believe clj-kondo offers. navigation and documentation as well

dpsutton 2020-06-08T21:13:45.377600Z

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

dpsutton 2020-06-08T21:17:47.377900Z

the linear scans through lots of hash maps are in this function: https://github.com/didibus/anakondo/blob/master/anakondo.el#L593

dpsutton 2020-06-08T21:18:31.378700Z

which just calls (hash-table-values hash-table).