From b162327c7dc2a32558572ea8bc775ec5d4f36554 Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Wed, 7 Aug 2024 22:20:26 -0700 Subject: [PATCH] Let's just sit and meditation before painting the screen --- ha-display.org | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ha-display.org b/ha-display.org index 07611e9..1c57d88 100644 --- a/ha-display.org +++ b/ha-display.org @@ -384,10 +384,12 @@ Oh, and turn off the line highlighting: (global-hl-line-mode -1) #+end_src -And of course, the default is /inside/ where it is dark and safe: +And of course, the default is /inside/ where it is dark and safe. Let’s also wait til the world settles down before calling this. #+begin_src emacs-lisp - (laptop-inside) + (progn + (sit-for 2) + (laptop-inside)) #+end_src ** Highlight Task Labels In code, if you drop a specific /text/ labels, we can highlight them with [[https://github.com/tarsius/hl-todo][hl-todo package]]: