blob: 3fa85f780b6448f879baaa1e320c80398107d3f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
(setq user-full-name "Jakub Dlugosz"
user-mail-address "jdlugosz963@gmail.com")
(setq doom-theme 'doom-dracula)
(setq doom-font (font-spec :family "Mononoki Nerd Font Mono" :size 13))
(setq org-directory "~/Documents/org/")
(setq display-line-numbers-type 'relative)
(setq org-babel-default-header-args:python
'((:session . "*python*")
(:results . "output")))
(setq fancy-splash-image "~/.doom.d/doom.png")
(custom-set-faces
'(org-level-1 ((t (:inherit outline-1 :height 1.2))))
'(org-level-2 ((t (:inherit outline-2 :height 1.1))))
'(org-level-3 ((t (:inherit outline-3 :height 1.05))))
'(org-level-4 ((t (:inherit outline-4 :height 1.025))))
'(org-level-5 ((t (:inherit outline-5 :height 1.0)))))
(setq org-ellipsis " ▼ ")
(use-package! org-bullets
:after org
:hook (org-mode . org-bullets-mode)
:config
(setq org-bullets-bullet-list '("◉" "●" "○" "◆" "●" "○" "◆"))
)
(use-package org-roam
:ensure t
:custom
(org-roam-directory (file-truename "~/Documents/org/roam/"))
:bind (("C-c n l" . org-roam-buffer-toggle)
("C-c n f" . org-roam-node-find)
("C-c n g" . org-roam-graph)
("C-c n i" . org-roam-node-insert)
("C-c n c" . org-roam-capture)
;; Dailies
("C-c n j" . org-roam-dailies-capture-today))
:config
;; If you're using a vertical completion framework, you might want a more informative completion interface
(setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag)))
(org-roam-db-autosync-mode)
;; If using org-roam-protocol
(require 'org-roam-protocol))
(global-set-key (kbd "<f8>") 'org-tree-slide-mode)
(global-set-key (kbd "S-<f8>") 'org-tree-slide-skip-done-toggle)
(setq lsp-rust-server 'rust-analyzer)
|