diff options
author | Marc Coquand <marc@mccd.space> | 2024-10-07 18:25:33 +0300 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-10-07 18:25:33 +0300 |
commit | e95a9c1992b978183b7461f38165aa7e403bf0da (patch) | |
tree | 93dd7c548575a9d3b01df58a7ebdd0f0b8e94f51 | |
parent | ea8e480979f45624dc94d4695275e70518cce877 (diff) | |
download | bsd-e95a9c1992b978183b7461f38165aa7e403bf0da.tar.gz bsd-e95a9c1992b978183b7461f38165aa7e403bf0da.tar.bz2 bsd-e95a9c1992b978183b7461f38165aa7e403bf0da.zip |
.
-rw-r--r-- | emacs | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -259,7 +259,7 @@ Uses `marcc/timestamp-format' for formatting the date/time." :hook ((diary-mode . variable-pitch-mode) (diary-fancy-display-mode . variable-pitch-mode) - (diary-mode . org-link-minor-mode) + (diary-fancy-display-mode . org-link-minor-mode) (diary-mode . flyspell-mode)) :config (global-set-key (kbd "C-c d") 'calendar) @@ -335,6 +335,7 @@ Uses `marcc/timestamp-format' for formatting the date/time." org-default-notes-file "~/personal-db/todo.org" org-hide-emphasis-markers t org-agenda-include-diary t + org-agenda-remove-tags nil org-agenda-inhibit-startup t ;; Add /New Heading at the end for use org-refile-allow-creating-parent-nodes 'confirm @@ -358,11 +359,13 @@ Uses `marcc/timestamp-format' for formatting the date/time." (set-face-attribute 'org-block nil :inherit 'fixed-pitch) (set-face-attribute 'org-code nil :inherit 'fixed-pitch) (set-face-attribute 'org-table nil :inherit 'fixed-pitch) + (set-face-attribute 'org-date nil :inherit 'fixed-pitch) + (set-face-attribute 'org-tag nil :inherit 'fixed-pitch) (global-set-key (kbd "C-c l") #'org-store-link) (global-set-key (kbd "C-c a") #'org-agenda) (global-set-key (kbd "C-c c") #'org-capture) (global-set-key (kbd "C-c s") #'project-find-regexp) - + (global-set-key (kbd "C-c =") #'org-open-at-point-global) :hook ((org-mode . auto-save-mode)) (org-mode . org-indent-mode) @@ -526,7 +529,7 @@ Uses `marcc/timestamp-format' for formatting the date/time." '(eww-valid-certificate ((t (:foreground "black" :weight bold)))) '(fixed-pitch ((t (:family "Iosevka SS13 Extended")))) '(font-lock-builtin-face ((t (:weight regular)))) - '(font-lock-comment-face ((t (:foreground "#0000FF" :slant normal)))) + '(font-lock-comment-face ((t (:foreground "royalblue" :slant normal)))) '(font-lock-constant-face ((t (:slant italic :weight regular)))) '(font-lock-function-name-face ((t (:weight regular)))) '(font-lock-keyword-face ((t (:weight regular)))) @@ -538,6 +541,7 @@ Uses `marcc/timestamp-format' for formatting the date/time." '(highlight ((t (:background "azure2")))) '(info-header-xref ((t (:inherit info-xref :underline (:color "RoyalBlue3" :style line :position t))))) '(info-node ((t (:foreground "brown" :box (:line-width (4 . 4) :color "white") :slant italic :weight bold)))) + '(link ((t (:foreground "royalblue" :underline t)))) '(markdown-inline-code-face ((t (:inherit markdown-code-face)))) '(markdown-pre-face ((t (:inherit markdown-code-face)))) '(mastodon-display-name-face ((t (:inherit nil :weight bold)))) @@ -545,7 +549,10 @@ Uses `marcc/timestamp-format' for formatting the date/time." '(mode-line-inactive ((t (:inherit mode-line :background "grey95" :foreground "grey20" :underline (:color "grey80" :style line :position 0) :weight light)))) '(mu4e-header-highlight-face ((t (:inherit hl-line :extend t :weight bold)))) '(mu4e-highlight-face ((t (:inherit highlight)))) + '(org-date ((t (:inherit fixed-pitch :foreground "gray40" :underline t)))) + '(org-headline-done ((t (:foreground "gray60")))) '(org-level-1 ((t (:inherit outline-1 :extend nil :weight regular)))) + '(org-tag ((t (:inherit fixed-pitch :foreground "gray40" :weight regular)))) '(org-time-grid ((t (:foreground "gray")))) '(outline-4 ((t (:inherit outline-2)))) '(tab-bar ((t (:inherit variable-pitch :background "white" :box (:line-width (8 . 8) :color "white" :style flat-button) :weight light)))) @@ -577,7 +584,7 @@ Uses `marcc/timestamp-format' for formatting the date/time." '((:name "Last 7 days" :query "date:7d..now" :hide-unread t :key 119) (:name "Messages with images" :query "mime:image/*" :key 112))) '(org-agenda-files - '("/home/mccd/personal-db/notes/carving-my-own-road.org" "/home/mccd/personal-db/notes/emacs-teaches.org" "/home/mccd/personal-db/notes/agency-and-tech.org" "/home/mccd/builds/sustainably/piva.org" "/home/mccd/builds/comma.directory/comma.org" "/home/mccd/personal-db/notes/frugal.org" "/home/mccd/personal-db/notes/inbox.org" "/home/mccd/personal-db/notes/emacs.org" "/home/mccd/personal-db/todo.org")) + '("~/builds/sustainably/piva.org" "/home/mccd/personal-db/todo.org" "/home/mccd/personal-db/notes/agency-and-tech.org" "/home/mccd/personal-db/notes/carving-my-own-road.org" "/home/mccd/personal-db/notes/emacs-teaches.org" "/home/mccd/personal-db/notes/emacs.org" "/home/mccd/personal-db/notes/frugal.org" "/home/mccd/personal-db/notes/inbox.org")) '(org-fold-core-style 'overlays) '(package-selected-packages '(orglink web-mode flycheck nix-mode nix-ts-mode avy pdf-tools elfeed-protocol lem yasnippet-snippets elfeed yasnippet smartparens markdown-mode mastodon tldr almost-mono-themes rec-mode magit go-mode expand-region devdocs)) |