-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit.el
712 lines (596 loc) · 21.5 KB
/
init.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
(add-to-list 'load-path (expand-file-name "~/.emacs.d/lisp/"))
(defvar bootstrap-version)
(let ((bootstrap-file
(expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory))
(bootstrap-version 5))
(unless (file-exists-p bootstrap-file)
(with-current-buffer
(url-retrieve-synchronously
"https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
'silent 'inhibit-cookies)
(goto-char (point-max))
(eval-print-last-sexp)))
(load bootstrap-file nil 'nomessage))
(straight-use-package 'use-package)
(use-package dash :straight t)
(defun ensure-in-path (newpath)
"Ensures that newpath is present in PATH and exec-path, but only if it exists"
(if (file-directory-p newpath)
(progn
(when (not (-contains? (parse-colon-path (getenv "PATH")) newpath))
(setenv "PATH" (concat newpath ":" (getenv "PATH"))))
(when (not (-contains? exec-path newpath))
(setq exec-path (cons newpath exec-path))))
(display-warning
"init"
(format "Path '%s' either doesn't exist or isn't a dir; not adding to PATH" newpath))))
(use-package exec-path-from-shell
:if (memq window-system '(mac ns))
:config
(exec-path-from-shell-initialize)
(ensure-in-path "/Users/treed/.nix-profile/bin") ;; Nix
:straight t)
(use-package delight
:straight t)
(use-package undo-tree
:straight t
:delight
:config
(setq undo-tree-enable-undo-in-region t)
(global-undo-tree-mode))
;; Get rid of the toolbar
(tool-bar-mode -1)
;; Correctly set modifiers
(setq mac-option-modifier 'meta
mac-command-modfier 'super)
(use-package general
:straight t)
(use-package god-mode
:bind ("<escape>" . god-mode-all)
:straight t)
(use-package doom-themes
:config
(load-theme 'doom-solarized-light t)
:straight t)
(use-package doom-modeline
:hook (after-init . doom-modeline-mode)
:config
(setq doom-modeline-minor-modes t
doom-modeline-checker-simple-format nil)
:straight t)
(use-package spacebar
:hook (after-init . spacebar-mode)
:straight t)
(use-package ivy
:config
(setq ivy-use-virtual-buffers t)
(setq ivy-count-format "(%d/%d) ")
(setq ivy-height 20)
(ivy-mode 1)
:delight
:straight t)
(use-package swiper
:straight t)
(use-package counsel
:straight t)
(use-package counsel-projectile
:straight t)
(use-package ivy-prescient
:config
(ivy-prescient-mode +1)
(prescient-persist-mode +1)
(setq ivy-prescient-sort-commands '(:not swiper ivy-switch-buffer org-mru-clock-in))
:straight t)
(use-package gnuplot
:straight t)
(use-package ob-http
:straight t)
(use-package org
:after ob-http
:config
(plist-put org-format-latex-options :scale 2.0)
(add-hook 'org-babel-after-execute-hook 'org-redisplay-inline-images)
(org-babel-do-load-languages
'org-babel-load-languages
'(
(gnuplot . t)
(dot . t)
(abc . t)
(sql . t)
(http . t)
))
(setq org-directory "/Users/treed/Dropbox/Org")
(setq org-agenda-files '("/Users/treed/Dropbox/Org"))
(setq org-refile-targets '((nil :maxlevel . 9) (org-agenda-files :maxlevel . 9)))
(setq org-refile-use-outline-path 'file)
(setq org-outline-path-complete-in-steps nil)
(setq org-clock-persist 'history)
(org-clock-persistence-insinuate)
(setq org-clock-report-include-clocking-task t)
(setq org-refile-allow-creating-parent-nodes 'confirm)
(setq org-clock-mode-line-total 'today)
(setq org-hide-emphasis-markers t
org-startup-indented t
org-bullets-bullet-list '(" ")
org-pretty-entities t)
(setq org-capture-templates
'(("t" "Todo" entry (file "inbox.org")
"* TODO %?\n")
("w" "Work")
("wc" "Conversation" entry (file+headline "work.org" "Conversations")
"*** Conversation With %^{Whom} At %U\n%?\n\n" :clock-in t :clock-resume t)
("wr" "Review" entry (file+headline "work.org" "Reviews")
"*** Review %^{What} At %U\n%?\n\n" :clock-in t :clock-resume t)))
(font-lock-add-keywords 'org-mode
'(("^ *\\([-]\\) "
(0 (prog1 () (compose-region (match-beginning 1) (match-end 1) "•"))))))
(let* ((variable-tuple
(cond ((x-list-fonts "ETBembo") '(:font "ETBembo"))
((x-list-fonts "Lucida Grande") '(:font "Lucida Grande"))
((x-list-fonts "Verdana") '(:font "Verdana"))
((x-family-fonts "Sans Serif") '(:family "Sans Serif"))
(nil (warn "Cannot find a Sans Serif Font. Install Source Sans Pro."))))
(base-font-color (face-foreground 'default nil 'default))
(headline `(:inherit default :weight bold :foreground ,base-font-color)))
(custom-theme-set-faces
'user
`(org-level-8 ((t (,@headline ,@variable-tuple))))
`(org-level-7 ((t (,@headline ,@variable-tuple))))
`(org-level-6 ((t (,@headline ,@variable-tuple :height 1.05))))
`(org-level-5 ((t (,@headline ,@variable-tuple :height 1.15))))
`(org-level-4 ((t (,@headline ,@variable-tuple :height 1.25))))
`(org-level-3 ((t (,@headline ,@variable-tuple :height 1.5))))
`(org-level-2 ((t (,@headline ,@variable-tuple :height 1.75))))
`(org-level-1 ((t (,@headline ,@variable-tuple :height 1.9))))
`(org-document-title ((t (,@headline ,@variable-tuple :height 2.0 :underline nil)))))
'(org-block ((t (:inherit fixed-pitch))))
'(org-table ((t (:inherit fixed-pitch))))
'(org-agenda-done ((t (:foreground "black"))))
'(org-document-info ((t (:foreground "dark orange"))))
'(org-document-info-keyword ((t (:inherit (shadow fixed-pitch)))))
'(org-link ((t (:foreground "royal blue" :underline t))))
'(org-meta-line ((t (:inherit (font-lock-comment-face fixed-pitch)))))
'(org-property-value ((t (:inherit fixed-pitch))) t)
'(org-special-keyword ((t (:inherit (font-lock-comment-face fixed-pitch)))))
'(org-tag ((t (:inherit (shadow fixed-pitch) :weight bold :height 0.8))))
'(org-verbatim ((t (:inherit (shadow fixed-pitch)))))
'(org-indent ((t (:inherit (org-hide fixed-pitch))))))
(custom-theme-set-faces
'user
'(variable-pitch ((t (:family "ETBembo" :height 150 :weight light))))
'(fixed-pitch ((t (:family "Menlo" :slant normal :weight normal :height 1.0 :width normal)))))
(add-hook 'org-mode-hook 'variable-pitch-mode)
(add-hook 'org-mode-hook 'visual-line-mode))
(use-package org-bullets
:after org
:config
(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))
:straight t)
(use-package org-mru-clock
:straight t
:bind* (("C-c C-x i" . org-mru-clock-in)
("C-c C-x C-j" . org-mru-clock-select-recent-task))
:init
(setq org-mru-clock-how-many 100
org-mru-clock-completing-read #'ivy-completing-read))
(use-package org-duration
:init
(setq org-duration-format '(("h" . t) (special . 1))))
(use-package deadgrep
:commands deadgrep
:init
(setq deadgrep-project-root-function 'projectile-project-root)
:straight t)
(use-package dumb-jump
:bind (("M-g o" . dumb-jump-go-other-window)
("M-g j" . dumb-jump-go)
("M-g b" . dumb-jump-back)
("M-g i" . dumb-jump-go-prompt)
("M-g x" . dumb-jump-go-prefer-external)
("M-g z" . dumb-jump-go-prefer-external-other-window))
:config (setq dumb-jump-selector 'ivy)
:straight t)
(use-package string-inflection
:straight t)
(use-package expand-region
:bind ("C-=" . er/expand-region)
:straight t)
(use-package comment-dwim-2
:bind ("M-;" . comment-dwim-2)
:straight t)
(use-package multiple-cursors
:straight t)
(use-package ace-jump-mode
:bind ("C-." . ace-jump-mode)
:straight t)
(use-package jump-char
:bind (("M-m" . jump-char-forward)
("M-M" . jump-char-backward))
:straight t)
(use-package which-key
:delight
:config
(which-key-mode)
:straight t)
(use-package ace-window
:bind ("M-o" . ace-window)
:init
(setq aw-ignore-on t
aw-dispatch-when-more-than 0)
:straight t)
(winner-mode)
(require 'windmove)
(setq my-tabs-map (make-sparse-keymap))
(general-define-key
:keymaps 'my-tabs-map
"c" 'spacebar-open
"q" 'spacebar-close
"a" 'spacebar-switch-last
"0" 'spacebar-switch-0
"1" 'spacebar-switch-1
"2" 'spacebar-switch-2
"3" 'spacebar-switch-3
"4" 'spacebar-switch-4
"5" 'spacebar-switch-5
"6" 'spacebar-switch-6
"7" 'spacebar-switch-7
"8" 'spacebar-switch-8
"9" 'spacebar-switch-9
"p" 'spacebar-switch-prev
"n" 'spacebar-switch-next
"r" 'spacebar-rename)
(setq my-files-map (make-sparse-keymap))
(general-define-key
:keymaps 'my-files-map
"f" 'counsel-find-file
"r" 'counsel-recentf
"o" 'counsel-projectile-find-file
"s" 'deadgrep)
(setq my-buffers-map (make-sparse-keymap))
(general-define-key
:keymaps 'my-buffers-map
"d" 'kill-this-buffer
"n" 'next-buffer
"p" 'previous-buffer
"b" 'ivy-switch-buffer
"c" 'clean-buffer-list
"S" 'swiper
"s" 'swiper-thing-at-point)
(setq my-strings-map (make-sparse-keymap))
(general-define-key
:keymaps 'my-strings-map
"u" 'string-inflection-underscore
"c" 'string-inflection-lower-camelcase
"C" 'string-inflection-camelcase)
(setq my-windows-map (make-sparse-keymap))
(general-define-key
:keymaps 'my-windows-map
"w" 'ace-window
"c" 'delete-window
"s" 'split-window-below
"v" 'split-window-right
"k" 'windmove-up
"j" 'windmove-down
"h" 'windmove-left
"l" 'windmove-right
"u" 'winner-undo
"r" 'winner-redo)
(setq my-org-clock-map (make-sparse-keymap))
(general-define-key
:keymaps 'my-org-clock-map
"i" 'org-mru-clock-in
"o" 'org-clock-out)
(setq my-global-org-map (make-sparse-keymap))
(general-define-key
:keymaps 'my-global-org-map
"c" '(:keymap my-org-clock-map :wk "Clock")
"r" 'org-refile
"o" 'org-capture)
(setq my-cursors-map (make-sparse-keymap))
(general-define-key
:keymaps 'my-cursors-map
"l" 'mc/edit-lines
"n" 'mc/mark-next-like-this-symbol
"p" 'mc/mark-previous-like-this-symbol)
(setq my-errors-map (make-sparse-keymap))
(general-define-key
:keymaps 'my-errors-map
"n" 'flycheck-next-error
"p" 'flycheck-previous-error
"l" 'flycheck-list-errors)
(setq my-leader-map (make-sparse-keymap))
(general-define-key
:keymaps 'my-leader-map
"a" '(:keymap my-tabs-map :wk "Tabs")
"e" '(:keymap my-errors-map :wk "Errors")
"f" '(:keymap my-files-map :wk "Files")
"b" '(:keymap my-buffers-map :wk "Buffers")
"o" '(:keymap my-global-org-map :wk "Org")
"s" '(:keymap my-strings-map :wk "String Manipulation")
"w" '(:keymap my-windows-map :wk "Windows")
"c" '(:keymap my-cursors-map :wk "Cursors")
"x" 'counsel-M-x)
(general-define-key "M-SPC" '(:keymap my-leader-map :wk "Leader"))
(use-package dashboard
:straight t
:config
(dashboard-setup-startup-hook))
(use-package w3m :straight t)
(use-package projectile
:straight t
:delight
:config
(projectile-mode +1))
(use-package direnv
:straight t
:delight
:config
(direnv-mode))
(use-package company
:hook python
:straight t)
(use-package flycheck
:delight
:config
(setq flycheck-checker-error-threshold 500)
:straight t)
(use-package lsp-mode
:commands (lsp lsp-deferred)
:delight
:hook (python-mode . (lamdba ()
(lsp-deferred)
(display-line-numbers-mode)))
:config
(setq lsp-prefer-flymake nil)
:straight t)
(use-package python
:custom
(lsp-pyls-plugins-pycodestyle-enabled nil)
(lsp-pyls-plugins-flake8-enabled t)
(lsp-pyls-plugins-flake8-max-line-length 120)
(lsp-pyls-plugins-flake8-config ".flake8"))
(use-package lsp-ui
:hook (lsp-mode . lsp-ui-mode)
:config
(setq lsp-ui-sideline-ignore-duplicate t)
(setq lsp-ui-doc-position 'top)
(setq lsp-ui-doc-alignment 'window)
:straight t)
(use-package company-lsp
:after company lsp-mode
:config (push 'company-lsp company-backends)
:straight t)
(use-package toml-mode
:straight t)
(use-package rust-mode
:hook (rust-mode . lsp)
:straight t)
(use-package cargo
:hook (rust-mode . cargo-minor-mode)
:delight cargo-minor-mode
:straight t)
(use-package flycheck-rust
:hook (rust-mode . flycheck-rust-setup)
:straight t)
(use-package go-mode
:init
(setenv "GO111MODULE" "on")
:config
(add-hook 'go-mode-hook #'flycheck-mode)
(add-hook 'go-mode-hook #'lsp)
:mode "\\.go$"
:straight t)
(use-package add-node-modules-path
:straight t)
(use-package prettier-js
:straight t)
(use-package typescript-mode
:mode "\\.ts$"
:config
(add-hook 'typescript-mode-hook #'setup-ts)
:straight t)
(use-package web-mode
:after (lsp)
:mode "\\.tsx$"
:config
(setq web-mode-enable-auto-quoting nil)
(add-hook 'web-mode-hook #'setup-ts)
:straight t)
(use-package js2-mode
:mode "\\.jsx?$"
:straight t)
;; This is no longer used, leaving it here for a bit in case I need part of it for the LSP setup
(defun setup-tide-mode ()
"Set up Tide mode."
(interactive)
(tide-setup)
(flycheck-mode +1)
(setq flycheck-check-syntax-automatically '(save mode-enabled))
(when (and (projectile-project-p) (file-exists-p (concat ( projectile-project-root ) "tsconfig.json")))
(setq flycheck-typescript-tsconfig . ( (concat projectile-project-root "tsconfig.json" ))))
(eldoc-mode +1)
(tide-hl-identifier-mode +1)
(company-mode +1)
(display-line-numbers-mode)
(add-node-modules-path)
(prettier-js-mode))
(defun setup-ts ()
"Set up typescript editing."
(interactive)
(add-node-modules-path)
(setq lsp-eslint-server-command `("node" ,(expand-file-name (car (last (file-expand-wildcards "/Users/treed/.vscode/extensions/dbaeumer.vscode-eslint-*/server/out/eslintServer.js")))) "--stdio"))
(lsp)
(prettier-js-mode)
(display-line-numbers-mode))
(use-package groovy-mode
:mode "\\.groovy$"
:straight t)
(use-package yaml-mode
:mode "\\.ya?ml$"
:straight t)
(use-package jinja2-mode
:mode "\\.j2$"
:straight t)
(use-package poly-ansible
:straight t)
(use-package json-mode
:straight t)
(use-package nix-mode
:after json-mode
:mode "\\.nix\\'"
:straight t)
(use-package magit
:config
(add-hook 'after-save-hook 'magit-after-save-refresh-status)
:straight t)
(let ((default-directory "/usr/local/share/emacs/site-lisp"))
(normal-top-level-add-subdirs-to-load-path))
(use-package mu4e
:config
(setq
mu4e-view-show-images t
mu4e-maildir "~/Maildir"
mu4e-drafts-folder "/gmail[Gmail].Drafts"
mu4e-trash-folder "/gmail[Gmail].Trash"
mu4e-sent-folder "/gmail[Gmail].Sent Mail"))
(use-package graphviz-dot-mode
:mode "\\.dot$"
:straight t)
(use-package omni-quotes
:delight
:init
(omni-quotes-mode)
:straight t)
(use-package remind-bindings
:after omni-quotes
:hook (after-init . remind-bindings-initialise)
:straight t)
;; Auto toggle embedded latex
;(require 'org-latex-cursor-toggle)
; this is buggy as hell, might be interactions with evil?
;; Auto refresh buffers
(global-auto-revert-mode 1)
;; Also auto refresh dired, but be quiet about it
(setq global-auto-revert-non-file-buffers t)
(setq auto-revert-verbose nil)
;; Answering just 'y' or 'n' will do
(defalias 'yes-or-no-p 'y-or-n-p)
(setq mouse-wheel-scroll-amount '(1 ((shift) . 1))) ;; one line at a time
(setq mouse-wheel-progressive-speed nil) ;; don't accelerate scrolling
(setq mouse-wheel-follow-mouse 't) ;; scroll window under mouse
(setq scroll-step 1) ;; keyboard scroll one line at a time
;; UTF-8 please
(setq locale-coding-system 'utf-8) ; pretty
(set-terminal-coding-system 'utf-8) ; pretty
(set-keyboard-coding-system 'utf-8) ; pretty
(set-selection-coding-system 'utf-8) ; please
(prefer-coding-system 'utf-8) ; with sugar on top
;; Show active region
(transient-mark-mode 1)
(make-variable-buffer-local 'transient-mark-mode)
(put 'transient-mark-mode 'permanent-local t)
(setq-default transient-mark-mode t)
;; Remove text in active region if inserting text
(delete-selection-mode 1)
;; Always display line and column numbers
(setq line-number-mode t)
(setq column-number-mode t)
;; Save a list of recent files visited. (open recent file with C-x f)
(recentf-mode 1)
(setq recentf-max-saved-items 100) ;; just 20 is too recent
;; Save minibuffer history
(savehist-mode 1)
(setq history-length 1000)
;; Sentences do not need double spaces to end. Period.
(set-default 'sentence-end-double-space nil)
(set-default 'fill-column 120)
;; Add parts of each file's directory to the buffer name if not unique
(require 'uniquify)
(setq uniquify-buffer-name-style 'forward)
;; Tidy up backups
(setq
; Don't litter the filesystem with backup files
backup-directory-alist `((".*" . ,temporary-file-directory))
auto-save-file-name-transforms `((".*" ,temporary-file-directory t))
; Use versioned backups
delete-old-versions t
kept-new-versions 6
kept-old-versions 2
version-control t
; get rid of lockfiles too
create-lockfiles nil)
(defun treed/first-non-empty (list)
"Get the first non-empty string from LIST."
(seq-some (lambda (elem) (when (> (length elem) 0) elem)) list))
(ert-deftest treed/first-non-empty ()
(should (equal (treed/first-non-empty '("" "0.5h")) "0.5h")))
(defconst treed/hours-re
(rx (submatch (and (one-or-more digit) (zero-or-one (and "." (one-or-more digit))))) "h")
"A regex to parse 'org-mode' decimal hours.")
(defun treed/hours-to-number (hours-str)
"Take an 'org-mode' decimal hours string in HOURS-STR and convert it to a number."
(save-match-data
(when (string-match treed/hours-re hours-str)
(string-to-number (match-string 1 hours-str)))))
(ert-deftest treed/hours-to-number ()
(should (equal (treed/hours-to-number "1.5h") 1.5))
(should (equal (treed/hours-to-number "*2.5h*") 2.5))
(should (equal (treed/hours-to-number "aoeu77.8h") 77.8))
(should (equal (treed/hours-to-number "no-number") nil)))
(defun treed/normalize-hours (hours-in days)
"Normalize HOURS-IN as hours per day in DAYS."
(let ((hours (treed/hours-to-number (if (consp hours-in) (treed/first-non-empty hours-in) hours-in))))
(when hours (format "%.1fh" (/ hours days)))))
(ert-deftest treed/normalize-hours ()
(should (equal (treed/normalize-hours "10.0h" 10) "1.0h"))
(should (equal (treed/normalize-hours '("" "5.5h") 5) "1.1h"))
(should (equal (treed/normalize-hours '("7.0h" "") 2) "3.5h")))
(defun treed/percentage-hours (hours-str total-hours-str)
"Get the percentage hours that HOURS-STR represents as a part of TOTAL-HOURS-STR."
(let ((hours (treed/hours-to-number hours-str))
(total-hours (treed/hours-to-number total-hours-str)))
(format "%.1f%%" (* (/ hours total-hours) 100))))
(ert-deftest treed/percentage-hours ()
(should (equal (treed/percentage-hours "1.0h" "8.0h") "12.5%")))
(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.
'(fixed-pitch ((t (:family "Menlo" :slant normal :weight normal :height 1.0 :width normal))))
'(lsp-ui-doc-background ((t (:background "#EEEEEE"))))
'(org-block ((t (:inherit fixed-pitch))))
'(org-document-info ((t (:foreground "dark orange"))))
'(org-document-info-keyword ((t (:inherit (shadow fixed-pitch)))))
'(org-document-title ((t (:inherit default :weight bold :foreground "#556b72" :font "ETBembo" :height 2.0 :underline nil))))
'(org-indent ((t (:inherit (org-hide fixed-pitch)))))
'(org-level-1 ((t (:inherit default :weight bold :foreground "#556b72" :font "ETBembo" :height 1.9))))
'(org-level-2 ((t (:inherit default :weight bold :foreground "#556b72" :font "ETBembo" :height 1.75))))
'(org-level-3 ((t (:inherit default :weight bold :foreground "#556b72" :font "ETBembo" :height 1.5))))
'(org-level-4 ((t (:inherit default :weight bold :foreground "#556b72" :font "ETBembo" :height 1.25))))
'(org-level-5 ((t (:inherit default :weight bold :foreground "#556b72" :font "ETBembo" :height 1.15))))
'(org-level-6 ((t (:inherit default :weight bold :foreground "#556b72" :font "ETBembo" :height 1.05))))
'(org-level-7 ((t (:inherit default :weight bold :foreground "#556b72" :font "ETBembo"))))
'(org-level-8 ((t (:inherit default :weight bold :foreground "#556b72" :font "ETBembo"))))
'(org-link ((t (:foreground "royal blue" :underline t))))
'(org-meta-line ((t (:inherit (font-lock-comment-face fixed-pitch)))))
'(org-property-value ((t (:inherit fixed-pitch))) t)
'(org-special-keyword ((t (:inherit (font-lock-comment-face fixed-pitch)))))
'(org-table ((t (:inherit fixed-pitch))))
'(org-tag ((t (:inherit (shadow fixed-pitch) :weight bold :height 0.8))))
'(org-verbatim ((t (:inherit (shadow fixed-pitch)))))
'(variable-pitch ((t (:family "ETBembo" :height 150 :weight light)))))
(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
(quote
("a27c00821ccfd5a78b01e4f35dc056706dd9ede09a8b90c6955ae6a390eb1c1e" default)))
'(lsp-ui-doc-include-signature t)
'(package-selected-packages
(quote
(multiple-cursors direnv god-mode doom-modeline doom-themes groovy-mode nix-mode json-mode dumb-jump expand-region ace-window jump-char ace-jump-mode paradox flycheck-rust toml-mode counsel-projectile counsel swiper ivy org-mru-clock hercules origami sublimity emacs-w3m helm-dash string-inflection company-lsp company-anaconda anaconda-mode company-go spacebar delight mu4e poly-ansible yaml prettier-js add-node-modules-path js2-mode helm-ag helm-projectile org-bullets spaceline-all-the-icons)))
'(paradox-github-token t)
'(safe-local-variable-values (quote ((lsp-pyls-plugins-flake8-config . "setup.cfg")))))