summaryrefslogtreecommitdiffstats
path: root/.doom.d/config.el
diff options
context:
space:
mode:
Diffstat (limited to '.doom.d/config.el')
-rw-r--r--.doom.d/config.el53
1 files changed, 52 insertions, 1 deletions
diff --git a/.doom.d/config.el b/.doom.d/config.el
index 851c998..589e66f 100644
--- a/.doom.d/config.el
+++ b/.doom.d/config.el
@@ -14,4 +14,55 @@
14 14
15(setq fancy-splash-image "~/.doom.d/doom.png") 15(setq fancy-splash-image "~/.doom.d/doom.png")
16 16
17(use-package! lsp-tailwindcss) 17
18(set-email-account!
19 "gmail"
20 '((mu4e-sent-folder . "/\[Gmail\].Wa\&AXw-ne")
21 (mu4e-trash-folder . "/\[Gmail\].Kosz")
22 (smtpmail-smtp-user . "jdlugosz963@gmail.com"))
23 t)
24
25(setq mu4e-get-mail-command "offlineimap index"
26 mu4e-update-interval 300
27 mu4e-compose-format-flowed t
28 mu4e-index-cleanup nil
29 mu4e-index-lazy-check t
30 mu4e-headers-date-format "%d.%m.%y")
31
32
33(custom-set-faces
34 '(org-level-1 ((t (:inherit outline-1 :height 1.2))))
35 '(org-level-2 ((t (:inherit outline-2 :height 1.1))))
36 '(org-level-3 ((t (:inherit outline-3 :height 1.05))))
37 '(org-level-4 ((t (:inherit outline-4 :height 1.025))))
38 '(org-level-5 ((t (:inherit outline-5 :height 1.0)))))
39
40(setq org-ellipsis " ▼ ")
41
42(use-package! org-bullets
43 :after org
44 :hook (org-mode . org-bullets-mode)
45 :config
46 (setq org-bullets-bullet-list '("◉" "●" "○" "◆" "●" "○" "◆"))
47 )
48
49(use-package org-roam
50 :ensure t
51 :custom
52 (org-roam-directory (file-truename "~/Notes/roam/"))
53 :bind (("C-c n l" . org-roam-buffer-toggle)
54 ("C-c n f" . org-roam-node-find)
55 ("C-c n g" . org-roam-graph)
56 ("C-c n i" . org-roam-node-insert)
57 ("C-c n c" . org-roam-capture)
58 ;; Dailies
59 ("C-c n j" . org-roam-dailies-capture-today))
60 :config
61 ;; If you're using a vertical completion framework, you might want a more informative completion interface
62 (setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag)))
63 (org-roam-db-autosync-mode)
64 ;; If using org-roam-protocol
65 (require 'org-roam-protocol))
66
67(global-set-key (kbd "<f8>") 'org-tree-slide-mode)
68(global-set-key (kbd "S-<f8>") 'org-tree-slide-skip-done-toggle)