This repository has been archived by the owner on Aug 24, 2021. It is now read-only.
forked from redguardtoo/emacs.d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.el
242 lines (203 loc) · 8.8 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
;; -*- coding: utf-8; lexical-binding: t; -*-
;; Without this comment emacs25 adds (package-initialize) here
;; (package-initialize)
(let* ((minver "25.1"))
(when (version< emacs-version minver)
(error "Emacs v%s or higher is required." minver)))
(defvar best-gc-cons-threshold
4000000
"Best default gc threshold value. Should NOT be too big!")
(defvar my-debug nil "Enable debug mode.")
;; don't GC during startup to save time
(setq gc-cons-threshold most-positive-fixnum)
(setq emacs-load-start-time (current-time))
;; {{ emergency security fix
;; https://bugs.debian.org/766397
(with-eval-after-load 'enriched
(defun enriched-decode-display-prop (start end &optional param)
(list start end)))
;; }}
;;----------------------------------------------------------------------------
;; Which functionality to enable (use t or nil for true and false)
;;----------------------------------------------------------------------------
(setq *is-a-mac* (eq system-type 'darwin))
(setq *win64* (eq system-type 'windows-nt))
(setq *cygwin* (eq system-type 'cygwin) )
(setq *linux* (or (eq system-type 'gnu/linux) (eq system-type 'linux)) )
(setq *unix* (or *linux* (eq system-type 'usg-unix-v) (eq system-type 'berkeley-unix)) )
(setq *emacs24* (>= emacs-major-version 24))
(setq *emacs25* (>= emacs-major-version 25))
(setq *emacs26* (>= emacs-major-version 26))
(setq *no-memory* (cond
(*is-a-mac*
;; @see https://discussions.apple.com/thread/1753088
;; "sysctl -n hw.physmem" does not work
(<= (string-to-number (shell-command-to-string "sysctl -n hw.memsize"))
(* 4 1024 1024)))
(*linux* nil)
(t nil)))
(setq evil-want-C-u-scroll t)
(defconst my-emacs-d (file-name-as-directory user-emacs-directory)
"Directory of emacs.d")
(defconst my-site-lisp-dir (concat my-emacs-d "site-lisp")
"Directory of site-lisp")
(defconst my-lisp-dir (concat my-emacs-d "lisp")
"Directory of lisp")
;; @see https://www.reddit.com/r/emacs/comments/55ork0/is_emacs_251_noticeably_slower_than_245_on_windows/
;; Emacs 25 does gc too frequently
(when *emacs25*
;; (setq garbage-collection-messages t) ; for debug
(setq best-gc-cons-threshold (* 64 1024 1024))
(setq gc-cons-percentage 0.5)
(run-with-idle-timer 5 t #'garbage-collect))
(defun my-vc-merge-p ()
"Use Emacs for git merge only?"
(boundp 'startup-now))
(defun require-init (pkg &optional maybe-disabled)
"Load PKG if MAYBE-DISABLED is nil or it's nil but start up in normal slowly."
(when (or (not maybe-disabled) (not (my-vc-merge-p)))
(load (file-truename (format "%s/%s" my-lisp-dir pkg)) t t)))
(defun local-require (pkg)
"Require PKG in site-lisp directory."
(unless (featurep pkg)
(load (expand-file-name
(cond
((eq pkg 'go-mode-load)
(format "%s/go-mode/%s" my-site-lisp-dir pkg))
(t
(format "%s/%s/%s" my-site-lisp-dir pkg pkg))))
t t)))
;; @see https://www.reddit.com/r/emacs/comments/3kqt6e/2_easy_little_known_steps_to_speed_up_emacs_start/
;; Normally file-name-handler-alist is set to
;; (("\\`/[^/]*\\'" . tramp-completion-file-name-handler)
;; ("\\`/[^/|:][^/|]*:" . tramp-file-name-handler)
;; ("\\`/:" . file-name-non-special))
;; Which means on every .el and .elc file loaded during start up, it has to runs those regexps against the filename.
(let* ((file-name-handler-alist nil))
;; ;; {{
;; (require 'benchmark-init-modes)
;; (require 'benchmark-init)
;; (benchmark-init/activate)
;; ;; `benchmark-init/show-durations-tree' to show benchmark result
;; ;; }}
(require-init 'init-autoload)
;; `package-initialize' takes 35% of startup time
;; need check https://github.com/hlissner/doom-emacs/wiki/FAQ#how-is-dooms-startup-so-fast for solution
(require-init 'init-modeline)
(require-init 'init-utils)
(require-init 'init-file-type)
(require-init 'init-elpa)
(require-init 'init-exec-path t) ;; Set up $PATH
;; Any file use flyspell should be initialized after init-spelling.el
(require-init 'init-spelling t)
(require-init 'init-uniquify t)
(require-init 'init-ibuffer t)
(require-init 'init-ivy)
(require-init 'init-hippie-expand)
(require-init 'init-windows)
(require-init 'init-markdown t)
(require-init 'init-javascript t)
(require-init 'init-org t)
(require-init 'init-css t)
(require-init 'init-python t)
(require-init 'init-lisp t)
(require-init 'init-elisp t)
(require-init 'init-yasnippet t)
(require-init 'init-cc-mode t)
(require-init 'init-linum-mode)
(require-init 'init-git t)
(require-init 'init-gtags t)
(require-init 'init-clipboard)
(require-init 'init-ctags t)
(require-init 'init-bbdb t)
(require-init 'init-gnus t)
(require-init 'init-lua-mode t)
(require-init 'init-workgroups2 t) ; use native API in lightweight mode
(require-init 'init-term-mode t)
(require-init 'init-web-mode t)
(require-init 'init-company t)
(require-init 'init-chinese t) ;; cannot be idle-required
;; need statistics of keyfreq asap
(require-init 'init-keyfreq t)
(require-init 'init-httpd t)
;; projectile costs 7% startup time
;; don't play with color-theme in light weight mode
;; color themes are already installed in `init-elpa.el'
(require-init 'init-theme)
;; misc has some crucial tools I need immediately
(require-init 'init-essential)
;; handy tools though not must have
(require-init 'init-misc t)
(require-init 'init-emacs-w3m t)
(require-init 'init-shackle t)
(require-init 'init-dired t)
(require-init 'init-writting t)
(require-init 'init-hydra) ; hotkey is required everywhere
;; use evil mode (vi key binding)
(require-init 'init-evil) ; init-evil dependent on init-clipboard
(require-init 'init-neotree) ; init-evil dependent on init-clipboard
;; ediff configuration should be last so it can override
;; the key bindings in previous configuration
(require-init 'init-ediff)
;; @see https://github.com/hlissner/doom-emacs/wiki/FAQ
;; Adding directories under "site-lisp/" to `load-path' slows
;; down all `require' statement. So we do this at the end of startup
;; NO ELPA package is dependent on "site-lisp/".
(setq load-path (cdr load-path))
(my-add-subdirs-to-load-path (file-name-as-directory my-site-lisp-dir))
(require-init 'init-flymake t)
(unless (my-vc-merge-p)
;; my personal setup, other major-mode specific setup need it.
;; It's dependent on *.el in `my-site-lisp-dir'
(load (expand-file-name "~/.custom.el") t nil)
;; @see https://www.reddit.com/r/emacs/comments/4q4ixw/how_to_forbid_emacs_to_touch_configuration_files/
;; See `custom-file' for details.
(load (setq custom-file (expand-file-name (concat my-emacs-d "custom-set-variables.el"))) t t)))
(setq gc-cons-threshold best-gc-cons-threshold)
(when (require 'time-date nil t)
(message "Emacs startup time: %d seconds."
(time-to-seconds (time-since emacs-load-start-time))))
;;; Local Variables:
;;; no-byte-compile: t
;;; End:
(put 'erase-buffer 'disabled nil)
;(load-theme 'solarized-light t)
(load-theme 'solarized-dark t)
(add-hook 'after-change-major-mode-hook (lambda() (electric-indent-mode -1)))
; rjsx
(with-eval-after-load 'rjsx-mode
;; {{ I hate the hotkeys to hide things
(define-key rjsx-mode-map "<" 'rjsx-electric-lt)
(define-key rjsx-mode-map ">" 'rjsx-electric-gt))
; tide
;; (defun setup-tide-mode ()
;; (interactive)
;; (tide-setup)
;; (flycheck-mode +1)
;; ;(setq flycheck-check-syntax-automatically '(save mode-enabled))
;; (eldoc-mode +1)
;; (tide-hl-identifier-mode +1)
;; ;; company is an optional dependency. You have to
;; ;; install it separately via package-install
;; ;; `M-x package-install [ret] company`
;; (company-mode +1))
;; aligns annotation to the right hand side
(setq company-tooltip-align-annotations t)
;; formats the buffer before saving
;(add-hook 'before-save-hook 'tide-format-before-save)
;(add-hook 'typescript-mode-hook #'setup-tide-mode)
;(add-hook 'js2-mode-hook #'setup-tide-mode)
(add-hook 'js2-mode-hook 'prettier-js-mode)
(require 'tmux-pane)
;; (require 'flycheck)
;; ;; disable jshint since we prefer eslint checking
;; (setq-default flycheck-disabled-checkers
;; (append flycheck-disabled-checkers
;; '(javascript-jshint)))
;; ;; use eslint with web-mode for jsx files
;; (flycheck-add-mode 'javascript-eslint 'web-mode)
;; (flycheck-add-mode 'javascript-eslint 'javascript-mode)
;(setq flycheck-javascript-standard-executable "/usr/bin/standardx")
;(setq xref-js2-search-program 'rg)
(setq elpy-rpc-python-command "python3")
(setq python-shell-interpreter "python3")