-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.el
80 lines (70 loc) · 3.8 KB
/
custom.el
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
;;; custom.el --- Junk custom file -*- lexical-binding: t; -*-
;; Copyright (C) 2017 John Allen
;; Author: John Allen <[email protected]>
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;
;;; Code:
(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.
'(auto-package-update-delete-old-versions nil)
'(bbdb-file-remote "/usr/share/emacs/bbdb")
'(company-backends
'(company-tasks company-reviewers company-bbdb company-nxml company-css company-capf
(company-dabbrev-code company-keywords)))
'(company-minimum-prefix-length 1)
'(diary-file "~/diary")
'(excorporate-configuration
'("[email protected]" . "https://outlook.office365.com/ews/exchange.asmx"))
'(helm-ff-lynx-style-map t)
'(helm-flx-for-helm-locate t)
'(helm-flx-mode t)
'(helm-mode-reverse-history nil)
'(lsp-restart 'auto-restart)
'(newsticker-date-format "(%A %D %H:%M)" t)
'(newsticker-html-renderer 'shr-render-region t)
'(newsticker-use-full-width nil t)
'(org-agenda-current-time-string "> you are here <")
'(org-agenda-hide-tags-regexp "TASKS\\|WAITING\\|SOMEDAY\\|HOLD\\|TICKLER")
'(org-agenda-include-diary nil)
'(org-agenda-sorting-strategy
'((agenda habit-down effort-up time-up priority-down category-keep)
(todo priority-down category-keep)
(tags priority-down category-keep)
(search category-keep)))
'(org-agenda-time-grid
'((daily today require-timed remove-match)
(900 1000 1100 1200 1300 1400 1500 1600 1700 1800)
"......" "----------------"))
'(org-agenda-timegrid-use-ampm nil)
'(org-archive-location "~/org/archive/archive.org::* From %s")
'(org-clock-task-overrun-text "Don't be such a punk")
'(org-download-method 'directory)
'(org-download-screenshot-method "screencapture -i %s")
'(org-export-with-toc nil)
'(org-pomodoro-format "P~%s")
'(org-pomodoro-play-sounds nil)
'(org-roam-directory "~/org/roam" nil nil "Customized with use-package org-roam")
'(org-special-ctrl-a/e 'reversed)
'(package-selected-packages
'(tree-sitter typescript-mode apheleia yaml-pro tree-sitter-langs counsel button-lock excorporate cython-mode eglot go-mode org-download org-roam-protocol company-org-roam org-d20 org-gcal modern-cpp-font-lock gnu-elpa-keyring-update markdown-mode lsp-mode org-pomodoro wttrin arduino-mode bbdb thrift yasnippet yaml-mode win-switch which-key web-mode use-package tangotango-theme rainbow-mode rainbow-delimiters popwin package-lint multiple-cursors lsp-ui lsp-hack js-comint ibuffer-vc ibuffer-git hgrc-mode hgignore-mode helm-xref helm-flx helm-descbinds hack-mode google-c-style gitignore-mode gitconfig-mode git-gutter flycheck expand-region exec-path-from-shell elisp-slime-nav cquery company-lsp auto-package-update anzu ag))
'(shr-width 80)
'(undo-outer-limit 120000000))
(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.
'(font-lock-string-face ((t (:foreground "#ad7fa8" :slant normal)))))