emacs: zone out after 5 mins idle

This commit is contained in:
Evie Litherland-Smith 2023-11-30 05:55:16 +00:00
parent 0d2e12f883
commit be357373eb
2 changed files with 10 additions and 0 deletions

View file

@ -267,6 +267,10 @@
:ensure t
:bind (("C-c d" . darkroom-mode)))
(use-package zone
:ensure t
:config (zone-when-idle (* 60 5)))
(setq org-directory "~/Org"
org-default-notes-file (expand-file-name "notes.org" org-directory)
org-pretty-entities-include-sub-superscripts t

View file

@ -318,6 +318,12 @@
:bind (("C-c d" . darkroom-mode)))
#+end_src
** Zone
#+begin_src emacs-lisp :tangle yes
(use-package zone
:ensure t
:config (zone-when-idle (* 60 5)))
#+end_src
* Org-mode
For reference information, see [[https://orgmode.com][Org-mode website]]