diff options
| -rw-r--r-- | bard-elisp/bard-embark.el | 2 | ||||
| -rw-r--r-- | bard-emacs-modules/bard-emacs-completion.el | 1 | ||||
| -rw-r--r-- | bard-emacs-modules/bard-emacs-email.el | 4 | ||||
| -rw-r--r-- | bard-emacs-modules/bard-emacs-org.el | 14 | ||||
| -rw-r--r-- | bard-emacs-modules/bard-emacs-theme.el | 4 | ||||
| -rw-r--r-- | tempel-snippets.el | 2 |
6 files changed, 18 insertions, 9 deletions
diff --git a/bard-elisp/bard-embark.el b/bard-elisp/bard-embark.el index fd45d30..cda2c2f 100644 --- a/bard-elisp/bard-embark.el +++ b/bard-elisp/bard-embark.el @@ -57,7 +57,7 @@ "i" #'package-install "d" #'package-delete "r" #'package-reinstall - "u" #'embark-browse-package-url + "b" #'embark-browse-package-url "w" #'embark-save-package-url) (defvar-keymap bard-embark-symbol-map diff --git a/bard-emacs-modules/bard-emacs-completion.el b/bard-emacs-modules/bard-emacs-completion.el index fd886a0..7c90cc4 100644 --- a/bard-emacs-modules/bard-emacs-completion.el +++ b/bard-emacs-modules/bard-emacs-completion.el @@ -2,7 +2,6 @@ (use-package vertico :ensure t :config - (vertico-mode 1) (setq vertico-scroll-margin 0) (setq vertico-cycle nil) diff --git a/bard-emacs-modules/bard-emacs-email.el b/bard-emacs-modules/bard-emacs-email.el index 9e8b634..68605a7 100644 --- a/bard-emacs-modules/bard-emacs-email.el +++ b/bard-emacs-modules/bard-emacs-email.el @@ -63,6 +63,10 @@ :query "tag:unread and tag:inbox" :sort-order newest-first :key ,(kbd "u")) + ( :name "📝 To Do" + :query "tag:todo" + :sort-order oldest-first + :key ,(kbd "t")) ( :name "🚩 flagged" :query "tag:flag" :sort-order newest-first diff --git a/bard-emacs-modules/bard-emacs-org.el b/bard-emacs-modules/bard-emacs-org.el index e2a0bad..c06f9fa 100644 --- a/bard-emacs-modules/bard-emacs-org.el +++ b/bard-emacs-modules/bard-emacs-org.el @@ -101,7 +101,7 @@ (setq org-capture-templates '(("t" "task" entry (file+olp - "~/Notes/denote/20240328T215727--todo__self.org" + "~/Notes/denote/20240328T215727--todo.org" "Inbox" "General tasks") "* TODO %?") ;; ("s" "Basic Statistics" entry @@ -114,17 +114,21 @@ ;; "** %U %^g\n:PROPERTIES:\n:ANKI_NOTE_TYPE: Cloze\n:ANKI_DECK: Statistics\n:END:\n*** Text\n %?\n*** Hooray\n\n") ("z" "Protocol" entry (file+olp - "~/Notes/denote/20240328T220037--media-tracker__self.org" "Quotes") + "~/Notes/denote/20240328T220037--media-tracker__media_topic.org" "Quotes") "* Source: [[%:link][%:description]]\n#+BEGIN_QUOTE\n%i\n#+END_QUOTE\n%?") ("Z" "Protocol Link" entry (file+olp - "~/Notes/denote/20240328T220037--media-tracker__self.org" "Watch/Read List") + "~/Notes/denote/20240328T220037--media-tracker__media_topic.org" "Watch/Read List") "* [[%:link][%:description]] \nCaptured On: %U \n%?") ("w" "Class outline" entry (file - "~/Notes/denote/20240328T215727--todo__self.org") + "~/Notes/denote/20240328T215727--todo.org") (file - "~/Notes/denote/templates/class-template.org")))) + "~/Notes/denote/templates/class-template.org")) + ("p" "project idea" entry + (file + "~/Notes/denote/20250201T165619--project-ideas__idea_programming.org") + "* %^{Project description}\n%?"))) ;;; Org Publish (setq org-html-scripts nil) diff --git a/bard-emacs-modules/bard-emacs-theme.el b/bard-emacs-modules/bard-emacs-theme.el index d56ee78..f8ae47e 100644 --- a/bard-emacs-modules/bard-emacs-theme.el +++ b/bard-emacs-modules/bard-emacs-theme.el @@ -159,7 +159,7 @@ The exact color values are taken from the active Modus theme." (use-package standard-themes :ensure t - ;; :init (standard-themes-select 'standard-light) + :init (standard-themes-select 'standard-light) :config (setq standard-themes-to-toggle '(standard-light standard-dark)) @@ -171,7 +171,7 @@ The exact color values are taken from the active Modus theme." (1 . (variable-pitch light 1.3)) (2 . (variable-pitch regular 1.2)) (agenda-date . (semilight 1.4)) - (agenda-structure . (variable-pitch light 1.5)) + (agenda-structure . (light 1.5)) (t . (variable-pitch 1.1)))) (setq standard-themes-mixed-fonts t) diff --git a/tempel-snippets.el b/tempel-snippets.el index d694ac9..cdcd0dd 100644 --- a/tempel-snippets.el +++ b/tempel-snippets.el @@ -25,6 +25,8 @@ org-mode (hat2 "\\hat{\\texbg{"p q"}}") (цитат "«"q"»") +(dblock-link "#+BEGIN: denote-links :regexp \"" q "\"" n n "#+END:") + emacs-lisp-mode (up "(use-package "p n> ":ensure t" n> q")") |
