diff options
Diffstat (limited to 'home/dots')
-rw-r--r-- | home/dots/.emacs | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/home/dots/.emacs b/home/dots/.emacs index 6f7c94e..4726607 100644 --- a/home/dots/.emacs +++ b/home/dots/.emacs @@ -57,8 +57,11 @@ (setq-default fill-column 80 line-spacing 5 + cursor-type 'box frame-title-format '("%b")) +(set-cursor-color "#ff0000") + (package-initialize) (unless package-archive-contents @@ -768,7 +771,7 @@ org-hide-emphasis-markers t org-agenda-include-diary nil org-agenda-remove-tags t - org-link-keep-stored-after-insertion t + org-link-keep-stored-after-insertion t org-startup-folded t org-agenda-inhibit-startup nil ;; Add /New Heading at the end for use @@ -783,7 +786,7 @@ "* TODO %?\n%i\n%a\n " :empty-lines 1) ("b" "Book" - entry (file+headline "~/personal-db/notes/concepts.org" "Books") + entry (file+headline "~/personal-db/notes/refs.org" "Books") "* %?\n:PROPERTIES:\n:AUTHOR:\n:STATE: unread\n:END:\n " :empty-lines 1) ("f" "Film" @@ -794,6 +797,11 @@ entry (file "~/personal-db/notes/concepts.org") "* %?\n%i\n%a\n " :empty-lines 1) + ("g" "Log Coffee" + entry (file+headline "~/personal-db/notes/log.org" "Log") + "* Brewed pour-over :coffee:\n:PROPERTIES:\n:WATER: 320g\n:COFFEE: 20g\n:ORIGIN:\n:NAME:\n:TEMP:\n:RATING:\n:PREHEAT: YES\n:END:\n%T\n*** Observations " + :empty-lines 0 + :prepend t) ("r" "Reference" entry (file "~/personal-db/notes/refs.org") "* %?\n%i\n%a\n " @@ -802,6 +810,10 @@ entry (file "~/personal-db/notes/reminders.org") "* TODO %?\nSCHEDULED: %^T" :empty-lines 1) + ("a" "Article" + entry (file+headline "~/personal-db/notes/refs.org" "Articles") + "* %?\n:PROPERTIES:\n:author:\n:END:\n " + :empty-lines 1) ("l" "Log" entry (file+headline "~/personal-db/notes/log.org" "Log") "** %?\n%T" @@ -1095,6 +1107,7 @@ '(magit-branch-remote ((t (:foreground "royalblue")))) '(markdown-inline-code-face ((t (:inherit markdown-code-face)))) '(markdown-pre-face ((t (:inherit markdown-code-face)))) + '(ido-only-match ((t (:foreground "forest green" :weight bold)))) '(mastodon-display-name-face ((t (:inherit nil :weight bold)))) '(message-header-name ((t (:weight bold)))) '(message-header-subject ((t (:slant italic)))) |