emacs

bozhidar 2025-02-13T09:59:13.304789Z

Dropping this here in case someone wants to make their clojure-mode and CIDER looks extra sexy https://emacsredux.com/blog/2025/02/13/customizing-color-themes/ 😄

10
❤️ 1
mpenet 2025-02-14T11:07:35.971419Z

consult-theme is also handy

🎉 1
mpenet 2025-02-14T11:07:42.842899Z

...to test things out.

mpenet 2025-02-14T11:08:02.502459Z

it has live previews so you can super quickly browse tons of themes and compare them

a13 2025-02-13T11:48:20.919489Z

speaking of faces, there's also https://github.com/Fanael/highlight-defined package, which can highlight faces (among other emacs lisp things) based on their names, quite useful for creating themes. Here's my config:

(use-package highlight-defined
  :ensure t
  :custom
  (highlight-defined-face-use-itself t) ; <- this
  :hook
  (help-mode . highlight-defined-mode)
  (emacs-lisp-mode . highlight-defined-mode))
looks like this

bozhidar 2025-02-13T12:33:01.718589Z

That looks handy! Never heard of it, but one can never keep track of all the great Emacs packages out there!

👍 1
a13 2025-02-13T12:36:00.846349Z

So, when designing themes, I usually create a quick macro (F3; M-x disable-theme; M-x load-theme; F4) and I can see all the changes perfectly in a fraction of a second without having to open a file with a complex syntax.

👏 1
👏🏼 1