aboutsummaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-07-06 13:40:06 -0700
committerFranck Cuny <franck@fcuny.net>2025-07-06 13:40:06 -0700
commitf8df8ab74770c932754fb4815081881fd4748a58 (patch)
tree6a5a4f3e96e9104e0e7da12e282cbc6f517e3da9 /configs
parenttweak configuration for both org and denote (diff)
downloadinfra-f8df8ab74770c932754fb4815081881fd4748a58.tar.gz
more tweaks for org and denote
Diffstat (limited to 'configs')
-rw-r--r--configs/users/fcuny/emacs/site-lisp/init-text.el19
1 files changed, 14 insertions, 5 deletions
diff --git a/configs/users/fcuny/emacs/site-lisp/init-text.el b/configs/users/fcuny/emacs/site-lisp/init-text.el
index bba1b05..0d0dcb3 100644
--- a/configs/users/fcuny/emacs/site-lisp/init-text.el
+++ b/configs/users/fcuny/emacs/site-lisp/init-text.el
@@ -144,17 +144,22 @@
(tags todo-state-down priority-down deadline-up)
(search todo-state-down priority-down deadline-up))))
-(use-package denote
- :defer t
+(use-package org-bullets
+ :ensure t
+ :hook ((org-mode . org-bullets-mode))
:custom
- (denote-sort-keywords t)
- (denote-directory org-directory)
+ (org-bullets-bullet-list '("►" "▸" "•" "★" "◇" "◇" "◇" "◇")))
+
+(use-package denote
:hook
(dired-mode . denote-dired-mode)
+
:custom-face
(denote-faces-link ((t (:slant italic))))
+
:init
(require 'denote-org)
+
:bind
(("C-c w d b" . denote-find-backlink)
("C-c w d d" . denote-date)
@@ -164,7 +169,11 @@
("C-c w d k" . denote-rename-file-keywords)
("C-c w d n" . denote)
("C-c w d r" . denote-rename-file)
- ("C-c w d R" . denote-rename-file-using-front-matter)))
+ ("C-c w d R" . denote-rename-file-using-front-matter))
+
+ :custom
+ (denote-sort-keywords t)
+ (denote-directory org-directory))
(provide 'init-text)