-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathinit-dev.el
100 lines (95 loc) · 4.64 KB
/
init-dev.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
;;; init-dev.el --- development settings for init file -*- lexical-binding: t; -*-
;;; Commentary:
;; Evaluated when loading init file.
;; Cleaner to keep this in a separate file rather than a long single line at the top of init.org
;;; Code:
(setq-local org-confirm-babel-evaluate nil)
(require 'auto-tangle-mode)
(auto-tangle-mode)
(add-hook 'auto-tangle-after-tangle-hook (lambda ()
(let ((elpaca-log-functions nil))
(load-file "~/.emacs.d/init.el")
(elpaca-process-queues))))
(eldoc-mode)
(setq ispell-buffer-session-localwords '( "ELPA"
"EPUB"
"Elisp"
"GC"
"LocalWords"
"MELPA"
"PDF"
"Paren"
"Spacemacs"
"TLS"
"TODO"
"TODOS"
"UI"
"ag"
"alist"
"anzu"
"asm"
"autoload"
"backend"
"cleanroom"
"config"
"contrib"
"descbinds"
"dev"
"doct"
"docview"
"el"
"elfeed"
"emacs"
"emacs-dev"
"emacs.d"
"epg"
"epub"
"esup"
"eval"
"evilified"
"explorg"
"flx"
"flycheck"
"flyspell"
"fontify"
"gc"
"gpg"
"hideshow"
"htmlize"
"init"
"js"
"linter"
"macrostep"
"magit"
"modeline"
"nov"
"olivetti"
"org-plus-contrib"
"package-lint"
"paren"
"pdf"
"ql"
"quickhelp"
"rebase"
"recentf"
"shr"
"smtpmail"
"stardict"
"symlinked"
"toc"
"tongle"
"twbs"
"utils"
"vc"
"vterm"
"wikinforg"
"wn"
"wordnet"
"wordnut"
"writegood"
"yasnippet"
"yasnippets"
"zerodark"
":PROPERTIES:"))
(provide 'init-dev)
;;; init-dev.el ends here