diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-11-04 09:50:04 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-11-04 09:50:04 +0000 |
commit | 330ef1a9dade3c66d53ba753a35bd493d1629fcf (patch) | |
tree | b27ea3b26cf69957c018efa4c0b92dabae83d5de /doom.d/custom.el | |
parent | 505ef41c306add913442d1b292aa857026376dda (diff) |
Synced with pop_os and can filter the agenda
Took me ages to work out how to custom filter the agenda. You use
org-agenda-category-filter-preset to do it.
Diffstat (limited to 'doom.d/custom.el')
-rw-r--r-- | doom.d/custom.el | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/doom.d/custom.el b/doom.d/custom.el new file mode 100644 index 0000000..10a24e2 --- /dev/null +++ b/doom.d/custom.el @@ -0,0 +1,48 @@ +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(ansi-color-names-vector + ["black" "#d55e00" "#009e73" "#f8ec59" "#0072b2" "#cc79a7" "#56b4e9" "white"]) + '(custom-safe-themes + '("ddffe74bc4bf2c332c2c3f67f1b8141ee1de8fd6b7be103ade50abb97fe70f0c" "b9761a2e568bee658e0ff723dd620d844172943eb5ec4053e2b199c59e0bcc22" "49acd691c89118c0768c4fb9a333af33e3d2dca48e6f79787478757071d64e68" "ff24d14f5f7d355f47d53fd016565ed128bf3af30eb7ce8cae307ee4fe7f3fd0" "00cec71d41047ebabeb310a325c365d5bc4b7fab0a681a2a108d32fb161b4006" "1a1ac598737d0fcdc4dfab3af3d6f46ab2d5048b8e72bc22f50271fd6d393a00" "7a424478cb77a96af2c0f50cfb4e2a88647b3ccca225f8c650ed45b7f50d9525" default)) + '(exwm-floating-border-color "#4f5d65") + '(fci-rule-color "#556873") + '(highlight-tail-colors ((("#46595b") . 0) (("#425760") . 20))) + '(ispell-dictionary nil) + '(jdee-db-active-breakpoint-face-colors (cons "#0d0f11" "#7FC1CA")) + '(jdee-db-requested-breakpoint-face-colors (cons "#0d0f11" "#A8CE93")) + '(jdee-db-spec-breakpoint-face-colors (cons "#0d0f11" "#899BA6")) + '(objed-cursor-color "#DF8C8C") + '(pdf-view-midnight-colors (cons "#c5d4dd" "#3c4c55")) + '(rustic-ansi-faces + ["#3c4c55" "#DF8C8C" "#A8CE93" "#DADA93" "#83AFE5" "#D18EC2" "#7FC1CA" "#c5d4dd"]) + '(vc-annotate-background "#3c4c55") + '(vc-annotate-color-map + (list + (cons 20 "#A8CE93") + (cons 40 "#b8d293") + (cons 60 "#c9d693") + (cons 80 "#DADA93") + (cons 100 "#e2d291") + (cons 120 "#eaca90") + (cons 140 "#F2C38F") + (cons 160 "#e7b1a0") + (cons 180 "#dc9fb1") + (cons 200 "#D18EC2") + (cons 220 "#d58db0") + (cons 240 "#da8c9e") + (cons 260 "#DF8C8C") + (cons 280 "#c98f92") + (cons 300 "#b39399") + (cons 320 "#9e979f") + (cons 340 "#556873") + (cons 360 "#556873"))) + '(vc-annotate-very-old-color nil)) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + ) |