Fork me on GitHub
#emacs
<
2020-06-08
>
maxim01:06:27

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

bartuka03:06:41

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

gerred13:06:00

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

jaide21:06:18

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

dpsutton21:06:02

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

dpsutton21:06:45

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

dpsutton21:06:47

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

dpsutton21:06:31

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