-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.el
More file actions
82 lines (81 loc) · 4.57 KB
/
custom.el
File metadata and controls
82 lines (81 loc) · 4.57 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
(put 'narrow-to-region 'disabled nil)
(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.
'(custom-safe-themes
'("88f7ee5594021c60a4a6a1c275614103de8c1435d6d08cc58882f920e0cec65e"
"02f57ef0a20b7f61adce51445b68b2a7e832648ce2e7efb19d217b6454c1b644"
"ac18cc10455c6c26a98354ba8f9d338842d7ecc9ae3d28c205ed154ef20d74ce" default))
'(magit-todos-insert-after '(bottom) nil nil "Changed by setter of obsolete option `magit-todos-insert-at'")
'(safe-local-variable-values
'((elisp-lint-indent-specs (org-mcp--modify-and-save . 3)
(org-mcp--with-uri-prefix-dispatch . 1) (org-mcp--with-org-file . 1)
(org-mcp-test--assert-error-and-file . 1)
(org-mcp-test--with-enabled . defun) (org-mcp-test--with-config . 1)
(org-mcp-test--with-temp-org-file . 2)
(org-mcp-test--with-add-todo-setup . 2)
(org-mcp-test--with-id-tracking . 2) (org-mcp-test--with-id-setup . 2)
(org-mcp-test--get-tag-config-and-check . defun)
(mcp-server-lib-ert-with-server . defun))
(eval with-eval-after-load 'lsp-mode
(message "setup lsp-file-watch-ignored-directories for project")
(add-to-list 'lsp-file-watch-ignored-directories
"[/\\\\]\\target-docker\\'")
(add-to-list 'lsp-file-watch-ignored-directories "[/\\\\]\\logs\\'")
(add-to-list 'lsp-file-watch-ignored-directories
"[/\\\\]\\integration_tests\\'")
(add-to-list 'lsp-file-watch-ignored-directories "[/\\\\]\\run\\'"))
(eval with-eval-after-load 'lsp-mode
(message "setup lsp-file-watch-ignored-directories for project")
(add-to-list 'lsp-file-watch-ignored-directories
"[/\\\\]\\target-docker\\'")
(add-to-list 'lsp-file-watch-ignored-directories "[/\\\\]\\logs\\'")
(add-to-list 'lsp-file-watch-ignored-directories "[/\\\\]\\run\\'"))
(rustic-cargo-test-runner . nextest) (rustic-cargo-test-runner nextest)
(rustic-cargo-test-runner 'nextest)
(eval progn
(add-to-list 'lsp-file-watch-ignored-directories
"[/\\\\]\\target-docker\\'")
(add-to-list 'lsp-file-watch-ignored-directories "[/\\\\]\\logs\\'")
(add-to-list 'lsp-file-watch-ignored-directories "[/\\\\]\\run\\'"))
(org-time-stamp-rounding-minutes 0 15) (org-clock-rounding-minutes . 15)
(eval ignore-errors
"Write-contents-functions is a buffer-local alternative to before-save-hook"
(add-hook 'write-contents-functions
(lambda nil (delete-trailing-whitespace) nil))
(require 'whitespace) "Sometimes the mode needs to be toggled off and on."
(whitespace-mode 0) (whitespace-mode 1))
(whitespace-line-column . 80)
(whitespace-style face tabs trailing lines-tail))))
(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.
'(+org-priority-a ((t (:foreground "red3" :weight bold :height 0.95))))
'(+org-priority-b ((t (:foreground "OrangeRed2" :weight bold))))
'(+org-priority-c ((t (:foreground "DarkOrange2" :weight bold))))
'(+org-priority-d ((t (:foreground "gold3" :weight bold))))
'(+org-priority-e ((t (:foreground "OliveDrab1" :weight bold))))
'(+org-priority-f ((t (:foreground "SpringGreen3" :weight bold))))
'(+org-priority-g ((t (:foreground "cyan4" :weight bold))))
'(+org-priority-h ((t (:foreground "DeepSkyBlue4" :weight bold))))
'(+org-priority-i ((t (:foreground "LightSteelBlue3" :weight bold))))
'(adoc-bold-face ((t (:bold t))))
'(adoc-code-face ((t (:inherit org-block))))
'(adoc-complex-replacement-face ((t (:inherit org-code :bold t))))
'(adoc-emphasis-face ((t (:inherit org-verbatim))))
'(adoc-internal-reference-face ((t (:inherit org-link))))
'(adoc-meta-face ((t (:inherit org-meta-line))))
'(adoc-reference-face ((t (:inherit org-link))))
'(adoc-typewriter-face ((t (:inherit org-code))))
'(adoc-verbatim-face ((t (:inherit org-verbatim))))
'(adoc-warning-face ((t (:inherit org-warning))))
'(magit-branch-current ((t (:foreground "#51afef" :box t))))
'(notmuch-message-summary-face ((t (:foreground "#848d94"))))
'(notmuch-search-subject ((t (:foreground "#b1b8c4"))))
'(org-ql-view-due-date ((t (:foreground "dark goldenrod"))))
'(ts-fold-replacement-face ((t (:foreground nil :box nil :inherit font-lock-comment-face :weight light)))))
(put 'secrets-mode 'disabled nil)