Update org-roam for writing

This commit is contained in:
JLP 2025-08-14 17:35:30 -04:00
parent 12ee8a2517
commit 0f529d9a53
Signed by: jleechpe
GPG key ID: 414E00D1FF7519DC
2 changed files with 29 additions and 1 deletions

View file

@ -4,7 +4,7 @@ Xephyr :1 -ac -dpi 107 -fullscreen -resizeable & # -dpi 180 -screen 1920x1080 &
DISPLAY=:1 tym --daemon & DISPLAY=:1 tym --daemon &
sleep 1 sleep 1
DISPLAY=:1 xrdb -load $HOME/.Xresources DISPLAY=:1 xrdb -load $HOME/.Xresources
DISPLAY=:1 ~/sources/duskwm/dusk/dusk & DISPLAY=:1 dusk &
# sleep 1 # sleep 1
# DISPLAY=:1 duskc run_command xrdb # DISPLAY=:1 duskc run_command xrdb

View file

@ -524,6 +524,12 @@ are defining or executing a macro."
(dashboard-setup-startup-hook) (dashboard-setup-startup-hook)
(run-with-idle-timer 5 nil #'my/delay-dashboard)) (run-with-idle-timer 5 nil #'my/delay-dashboard))
;; ** Time-stamp
(use-package time-stamp
:ensure nil
:init
(add-hook 'write-file-functions 'time-stamp))
;; * Buffer/Window Management ;; * Buffer/Window Management
;; ** Ibuffer / Buffer list ;; ** Ibuffer / Buffer list
(use-package ibuffer (use-package ibuffer
@ -1197,6 +1203,28 @@ methods the save hook cannot detect, like file synchronization."
("TITLE" . (:foreground ,(doom-color 'magenta) :weight bold :inverse-video t)) ("TITLE" . (:foreground ,(doom-color 'magenta) :weight bold :inverse-video t))
("POSTED" . (:foreground ,(doom-color 'base5) :background ,(doom-color 'base0) ("POSTED" . (:foreground ,(doom-color 'base5) :background ,(doom-color 'base0)
:weight bold)) :weight bold))
;; Writing faces
("SORT" . (:foreground ,(doom-color 'yellow) :background ,(doom-color 'red)
:weight bold :inverse-video t))
("FRAG" . (:foreground ,(doom-color 'base4) :background ,(doom-color 'teal)
:weight bold :inverse-video t))
("CHAP" . (:foreground ,(doom-color 'base4) :background ,(doom-color 'orange)
:weight bold :inverse-video t))
("SCENE" . (:foreground ,(doom-color 'base4) :background ,(doom-color 'cyan)
:weight bold :inverse-video t))
("QUOTE" . (:foreground ,(doom-color 'base4) :background ,(doom-color 'orange)
:weight bold :inverse-video t))
("DROP" . (:foreground ,(doom-color 'base4) :background ,(doom-color 'red)
:weight bold :inverse-video t))
("PLOT" . (:foreground ,(doom-color 'base0) :background ,(doom-color 'blue)
:weight bold :inverse-video t))
("EVENT" . (:foreground ,(doom-color 'base0) :background ,(doom-color 'red)
:weight bold :inverse-video t))
("NOTE" . (:foreground ,(doom-color 'base0) :background ,(doom-color 'yellow)
:weight bold :inverse-video t))
("WROTE" . (:foreground ,(doom-color 'base0) :background ,(doom-color 'green)
:weight bold :inverse-video t))
) )
org-todo-keyword-faces org-modern-todo-faces org-todo-keyword-faces org-modern-todo-faces
) )