refactor: Reorganize package configurations and fix bindings

This commit is contained in:
User
2026-06-30 22:10:17 +08:00
parent 8328d2a8ff
commit 97d0a4a3e4
4 changed files with 24 additions and 20 deletions

View File

@@ -75,7 +75,7 @@
:hook
(after-init . denote-rename-buffer-mode)
(dired-mode . denote-dired-mode)
:config
:init
(cond
(*is-android*
(setq denote-directory "~/storage/shared/my-org-note/"))
@@ -83,14 +83,14 @@
(setq denote-directory "H:/emacs/my-org-note/"))
(t
(setq denote-directory "~/org/my-org-note/")))
:init
(setq denote-prompts '(title signature keywords))
(setq denote-title-history nil)
(setq denote-signature-history
'("note" "project" "fun" "wisdom" "article" "data" "metanote" "agenda" "journal" "archive"))
(setq denote-known-keywords
'("emacs"))
(setq denote-title-history nil))
(setq denote-org-store-link-to-heading 'context
denote-prompts '(title signature keywords))
(setq denote-title-history nil
denote-signature-history
'("note" "project" "fun" "wisdom" "article" "data" "metanote" "agenda" "journal" "archive")
denote-known-keywords
'("emacs")
denote-title-history nil))
;; denote-org
(use-package denote-org)