diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-07-06 13:40:06 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-07-06 13:40:06 -0700 |
| commit | f8df8ab74770c932754fb4815081881fd4748a58 (patch) | |
| tree | 6a5a4f3e96e9104e0e7da12e282cbc6f517e3da9 | |
| parent | tweak configuration for both org and denote (diff) | |
| download | infra-f8df8ab74770c932754fb4815081881fd4748a58.tar.gz | |
more tweaks for org and denote
| -rw-r--r-- | configs/users/fcuny/emacs/site-lisp/init-text.el | 19 | ||||
| -rw-r--r-- | nix/users/fcuny/emacs.nix | 1 |
2 files changed, 15 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) diff --git a/nix/users/fcuny/emacs.nix b/nix/users/fcuny/emacs.nix index fcf1b8f..1785571 100644 --- a/nix/users/fcuny/emacs.nix +++ b/nix/users/fcuny/emacs.nix @@ -37,6 +37,7 @@ let markdown-mode nix-mode orderless + org-bullets protobuf-mode rg terraform-mode |
