;;;; `dictionary' (setq dictionary-server "dict.org" dictionary-default-popup-strategy "lev" dictionary-create-buttons nil dictionary-use-single-buffer t) (define-key global-map (kbd "C-c d") #'dictionary-lookup-definition) (use-package denote :ensure t :hook (dired-mode . denote-dired-mode) :bind (("C-c n n" . denote) ("C-c n r" . denote-rename-file) ("C-c n l" . denote-link) ("C-c n b" . denote-backlinks)) :config (denote-rename-buffer-mode 1) (setq denote-infer-keywords t) (setq denote-sort-keywords t) (setq denote-file-type 'org) (setq denote-excluded-directories-regexp nil) (setq denote-allow-multi-word-keywords nil) (setq denote-link-fontify-backlinks t) (setq denote-rename-no-confirm t) (let ((map global-map)) (define-key map (kbd "C-c n j") #'rul/denote-journal) (define-key map (kbd "C-c n n") #'denote) (define-key map (kbd "C-c n f") #'denote-open-or-create) (define-key map (kbd "C-c n i") #'denote-link) (define-key map (kbd "C-c n r") #'denote-rename-file) ) ) (defun rul/denote-journal () "Create an entry tagged 'journal' with the date as its title. If a journal for the current day exists, visit it. If multiple entries exist, prompt with completion for a choice between them. Else create a new file." (interactive) (let* ((today (format-time-string "%A %e %B %Y")) (string (denote-sluggify today "title")) (files (denote-directory-files-matching-regexp string))) (cond ((> (length files) 1) (find-file (completing-read "Select file: " files nil :require-match))) (files (find-file (car files))) (t (denote today '("journal")))))) (provide 'rul-write)