-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.el
executable file
·270 lines (216 loc) · 7.93 KB
/
config.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
;;; $DOOMDIR/config.el -*- lexical-binding: t; -*-
;; Place your private configuration here! Remember, you do not need to run 'doom
;; sync' after modifying this file
;; Some functionality uses this to identify you, e.g. GPG configuration, email
;; clients, file templates and snippets.
(setq user-full-name "Yifan Gu"
user-mail-address "[email protected]")
;; Doom exposes five (optional) variables for controlling fonts in Doom. Here
;; are the three important ones:
;;
;; + `doom-font'
;; + `doom-variable-pitch-font'
;; + `doom-big-font' -- used for `doom-big-font-mode'; use this for
;; presentations or streaming.
;;
;; They all accept either a font-spec, font string ("Input Mono-12"), or xlfd
;; font string. You generally only need these two:
(setq doom-font (font-spec :family "Monaco" :size 16 :weight 'regular)
doom-variable-pitch-font (font-spec :family "Monaco" :size 16))
;; There are two ways to load a theme. Both assume the theme is installed and
;; available. You can either set `doom-theme' or manually load a theme with the
;; `load-theme' function. This is the default:
(setq doom-theme 'doom-one)
;; If you use `org' and don't want your org files in the default location below,
;; change `org-directory'. It must be set before org loads!
(setq org-directory "~/org/")
(setq org-roam-directory "~/org/")
;; This determines the style of line numbers in effect. If set to `nil', line
;; numbers are disabled. For relative line numbers, set this to `relative'.
(setq display-line-numbers-type t)
;; Here are some additional functions/macros that could help you configure Doom:
;;
;; - `load!' for loading external *.el files relative to this one
;; - `use-package!' for configuring packages
;; - `after!' for running code after a package has loaded
;; - `add-load-path!' for adding directories to the `load-path', relative to
;; this file. Emacs searches the `load-path' when you load packages with
;; `require' or `use-package'.
;; - `map!' for binding new keys
;;
;; To get information about any of these functions/macros, move the cursor over
;; the highlighted symbol at press 'K' (non-evil users must press 'C-c c k').
;; This will open documentation for it, including demos of how they are used.
;;
;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how
;; they are implemented.
;;
;;
;; ==== UI/UX ====
;;
(defun transparency (value)
"Sets the transparency of the frame window. 0=transparent/100=opaque"
(interactive "nTransparency Value 0 - 100 opaque:")
(set-frame-parameter (selected-frame) 'alpha value))
(set-frame-parameter (selected-frame) 'alpha 100)
;; metakey for macos
(setq mac-option-key-is-meta nil
mac-command-key-is-meta t
mac-command-modifier 'meta
mac-option-modifier 'none)
(setq echo-keystrokes 0.1)
(setq scroll-margin 3
scroll-conservatively 10000)
(setq scroll-step 0)
;; move 4 line
(global-set-key "\M-n" (lambda () (interactive) (next-line 4)) )
(global-set-key "\M-p" (lambda () (interactive) (previous-line 4)) )
(add-to-list 'initial-frame-alist '(fullscreen . maximized))
;; quick shortcut for recet open file
;; (setq recentf-max-menu-items 25)
(global-set-key "\C-x\ \C-r" 'recentf-open-files)
;; bind window move key
(global-set-key "\M-k" 'windmove-up)
(global-set-key "\M-j" 'windmove-down)
(global-set-key "\M-h" 'windmove-left)
(global-set-key "\M-l" 'windmove-right)
(use-package! buffer-move)
(use-package! ag)
(global-set-key "\M-\S-k" 'buf-move-up)
(global-set-key "\M-\S-j" 'buf-move-down)
(global-set-key "\M-\S-h" 'buf-move-left)
(global-set-key "\M-\S-l" 'buf-move-right)
;; behave like vi's o command
(defun open-next-line (arg)
"Move to the next line and then opens a line.
See also `newline-and-indent'."
(interactive "p")
(end-of-line)
(open-line arg)
(next-line 1)
(when newline-and-indent
(indent-according-to-mode)))
(global-set-key (kbd "C-o") 'open-next-line)
;; behave like vi's O command
(defun open-previous-line (arg)
"Open a new line before the current one.
See also `newline-and-indent'."
(interactive "p")
(beginning-of-line)
(open-line arg)
(when newline-and-indent
(indent-according-to-mode)))
(global-set-key (kbd "M-o") 'open-previous-line)
;; autoindent open-*-lines
(defvar newline-and-indent t
"Modify the behavior of the open-*-line functions to cause them to autoindent.")
;; override DOOM emacs "C-a" and "C-e"
(global-set-key (kbd "C-a") 'move-beginning-of-line)
(global-set-key (kbd "C-e") 'move-end-of-line)
;; disable smartparens mode
;;(remove-hook 'doom-first-buffer-hook #'smartparens-global-mode)
;; open recentf in new window
(defun open-recentf-in-new-window ()
(interactive)
(if (= (length (window-list)) 1)
(split-window-horizontally))
(other-window 1)
(recentf-open-files))
(defun split-window-horizontally-move-cursor ()
(interactive)
(split-window-horizontally)
(other-window 1))
(defun split-window-vertically-move-cursor ()
(interactive)
(split-window-vertically)
(other-window 1))
(global-set-key (kbd "C-x 4 C-r") 'open-recentf-in-new-window)
(global-set-key (kbd "C-x 3") 'split-window-horizontally-move-cursor)
(global-set-key (kbd "C-x 2") 'split-window-vertically-move-cursor)
;; avy jump
;;(define-key global-map (kbd "C-c SPC") 'avy-goto-char)
(global-set-key (kbd "C-c SPC") 'avy-goto-char)
;; Go imports
(after! go-mode
(setq gofmt-command "goimports")
(add-hook 'go-mode-hook
(lambda ()
(add-hook 'after-save-hook 'gofmt nil 'make-it-local))))
;;
;; ==== lang ====
;;
;; go mode
(gofmt-before-save)
(add-hook 'go-mode-hook
(lambda ()
(local-set-key (kbd "M-*") 'pop-tag-mark)))
;; org
(setq +org-roam-open-buffer-on-find-file nil)
(defun org-open-link-in-other-window ()
(interactive)
(split-window-horizontally)
(other-window 1)
(org-open-at-point))
(defun org-meta-return-with-store-link ()
(interactive)
(org-meta-return)
(org-id-store-link))
;; Create roam links for all level 1 headers.
(defun org-create-links-for-all-headers ()
(org-map-entries (lambda () (org-id-store-link) "LEVEL=1")))
;; Create roam links for the title plus all level 1 headers.
(defun org-create-all-links ()
(interactive)
(beginning-of-buffer)
(org-id-store-link)
(org-create-links-for-all-headers))
(defun load-org-theme()
(interactive)
(load-theme 'doom-homage-white))
(defun load-default-theme()
(interactive)
(load-theme 'doom-one))
(defun org-roam-add-tag ()
(interactive)
(end-of-line)
(if (equal (string (preceding-char)) ":")
(insert ":")
(insert " ::"))
(backward-char))
(add-hook 'org-mode-hook
(lambda()
(local-set-key (kbd "C-t") 'org-roam-add-tag)
(local-set-key (kbd "M-*") 'org-mark-ring-goto)
(local-set-key (kbd "C-c C-j") 'org-open-at-point)
(local-set-key (kbd "C-x 4 C-c C-j") 'org-open-link-in-other-window)
(local-set-key (kbd "C-c <C-return>") 'org-meta-return-with-store-link)
(load-theme 'org-leuven)))
(org-roam-db-autosync-mode)
(require 'org-bullets)
(setq org-bullets-bullet-list '(" " " " " " " " " "))
(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))
;; roam-ui
(use-package! websocket
:after org-roam)
(use-package! org-roam-ui
:after org-roam ;; or :after org
;; normally we'd recommend hooking orui after org-roam, but since org-roam does not have
;; a hookable mode anymore, you're advised to pick something yourself
;; if you don't care about startup time, use
;; :hook (after-init . org-roam-ui-mode)
:config
(setq org-roam-ui-sync-theme t
org-roam-ui-follow t
org-roam-ui-update-on-save t
org-roam-ui-open-on-start t))
;; deft
(setq deft-directory "~/org"
deft-default-extension "org"
deft-use-filter-string-for-filename t
deft-recursive t)
;; Partially fix Chinese line wrapping
(setq word-wrap-by-category t)
;; TODO
;; highlight, grammar check
;; jsonnet?
;; Remap M-n and M-p for markdown