Commit | Line | Data |
---|---|---|
dca50cf5 | 1 | ;;; init.el --- bandali's emacs configuration -*- lexical-binding: t -*- |
41d290a2 | 2 | |
4ed3a945 | 3 | ;; Copyright (C) 2018-2019 Amin Bandali <bandali@gnu.org> |
41d290a2 AB |
4 | |
5 | ;; This program is free software: you can redistribute it and/or modify | |
6 | ;; it under the terms of the GNU General Public License as published by | |
7 | ;; the Free Software Foundation, either version 3 of the License, or | |
8 | ;; (at your option) any later version. | |
9 | ||
10 | ;; This program is distributed in the hope that it will be useful, | |
11 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | ;; GNU General Public License for more details. | |
14 | ||
15 | ;; You should have received a copy of the GNU General Public License | |
16 | ;; along with this program. If not, see <https://www.gnu.org/licenses/>. | |
17 | ||
18 | ;;; Commentary: | |
19 | ||
20 | ;; Emacs configuration of Amin Bandali, computer scientist, functional | |
33273849 AB |
21 | ;; programmer, and free software activist. Uses straight.el for |
22 | ;; purely functional and fully reproducible package management. | |
b57457b2 AB |
23 | |
24 | ;; Over the years, I've taken inspiration from configurations of many | |
25 | ;; great people. Some that I can remember off the top of my head are: | |
26 | ;; | |
27 | ;; - https://github.com/dieggsy/dotfiles | |
28 | ;; - https://github.com/dakra/dmacs | |
29 | ;; - http://pages.sachachua.com/.emacs.d/Sacha.html | |
30 | ;; - https://github.com/dakrone/eos | |
31 | ;; - http://doc.rix.si/cce/cce.html | |
32 | ;; - https://github.com/jwiegley/dot-emacs | |
33 | ;; - https://github.com/wasamasa/dotemacs | |
34 | ;; - https://github.com/hlissner/doom-emacs | |
41d290a2 | 35 | |
49e9503b AB |
36 | ;;; Code: |
37 | ||
b57457b2 AB |
38 | ;;; Emacs initialization |
39 | ||
dca50cf5 | 40 | (defvar b/before-user-init-time (current-time) |
41d290a2 | 41 | "Value of `current-time' when Emacs begins loading `user-init-file'.") |
83364e5b AB |
42 | (defvar b/emacs-initialized nil |
43 | "Whether Emacs has been initialized.") | |
44 | ||
45 | (when (not (bound-and-true-p b/emacs-initialized)) | |
46 | (message "Loading Emacs...done (%.3fs)" | |
47 | (float-time (time-subtract b/before-user-init-time | |
48 | before-init-time)))) | |
41d290a2 | 49 | |
b57457b2 AB |
50 | ;; temporarily increase `gc-cons-threshhold' and `gc-cons-percentage' |
51 | ;; during startup to reduce garbage collection frequency. clearing | |
52 | ;; `file-name-handler-alist' seems to help reduce startup time too. | |
dca50cf5 AB |
53 | (defvar b/gc-cons-threshold gc-cons-threshold) |
54 | (defvar b/gc-cons-percentage gc-cons-percentage) | |
55 | (defvar b/file-name-handler-alist file-name-handler-alist) | |
41d290a2 AB |
56 | (setq gc-cons-threshold (* 400 1024 1024) ; 400 MiB |
57 | gc-cons-percentage 0.6 | |
58 | file-name-handler-alist nil | |
59 | ;; sidesteps a bug when profiling with esup | |
60 | esup-child-profile-require-level 0) | |
61 | ||
b57457b2 | 62 | ;; set them back to their defaults once we're done initializing |
dca50cf5 | 63 | (defun b/post-init () |
83364e5b AB |
64 | "My post-initialize function, run after loading `user-init-file'." |
65 | (setq b/emacs-initialized t | |
66 | gc-cons-threshold b/gc-cons-threshold | |
67 | gc-cons-percentage b/gc-cons-percentage | |
dca50cf5 AB |
68 | file-name-handler-alist b/file-name-handler-alist)) |
69 | (add-hook 'after-init-hook #'b/post-init) | |
41d290a2 | 70 | |
b57457b2 | 71 | ;; increase number of lines kept in *Messages* log |
41d290a2 AB |
72 | (setq message-log-max 20000) |
73 | ||
b57457b2 AB |
74 | ;; optionally, uncomment to supress some byte-compiler warnings |
75 | ;; (see C-h v byte-compile-warnings RET for more info) | |
41d290a2 AB |
76 | ;; (setq byte-compile-warnings |
77 | ;; '(not free-vars unresolved noruntime lexical make-local)) | |
78 | ||
b57457b2 AB |
79 | \f |
80 | ;;; whoami | |
81 | ||
41d290a2 | 82 | (setq user-full-name "Amin Bandali" |
dca50cf5 | 83 | user-mail-address "bandali@gnu.org") |
41d290a2 | 84 | |
b57457b2 AB |
85 | \f |
86 | ;;; comment macro | |
87 | ||
88 | ;; useful for commenting out multiple sexps at a time | |
89 | (defmacro comment (&rest _) | |
90 | "Comment out one or more s-expressions." | |
91 | (declare (indent defun)) | |
92 | nil) | |
93 | ||
94 | \f | |
33273849 AB |
95 | ;;; Package management |
96 | ||
97 | ;; No package.el (for emacs 26 and before, uncomment the following) | |
98 | ;; Not necessary when using straight.el | |
99 | ;; (C-h v straight-package-neutering-mode RET) | |
100 | ||
101 | (when (and | |
102 | (not (featurep 'straight)) | |
103 | (version< emacs-version "27")) | |
104 | (setq package-enable-at-startup nil) | |
105 | ;; (package-initialize) | |
106 | ) | |
107 | ||
108 | ;; for emacs 27 and later, we use early-init.el. see | |
109 | ;; https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=24acb31c04b4048b85311d794e600ecd7ce60d3b | |
110 | ||
111 | ;; straight.el | |
112 | ||
113 | ;; Main engine start... | |
114 | ||
115 | (setq straight-repository-branch "develop" | |
116 | straight-check-for-modifications '(check-on-save find-when-checking)) | |
117 | ||
118 | (defun b/bootstrap-straight () | |
119 | (defvar bootstrap-version) | |
120 | (let ((bootstrap-file | |
121 | (expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory)) | |
122 | (bootstrap-version 5)) | |
123 | (unless (file-exists-p bootstrap-file) | |
124 | (with-current-buffer | |
125 | (url-retrieve-synchronously | |
126 | "https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el" | |
127 | 'silent 'inhibit-cookies) | |
128 | (goto-char (point-max)) | |
129 | (eval-print-last-sexp))) | |
130 | (load bootstrap-file nil 'nomessage))) | |
131 | ||
132 | ;; Solid rocket booster ignition... | |
133 | ||
134 | (b/bootstrap-straight) | |
135 | ||
136 | ;; We have lift off! | |
137 | ||
138 | (setq straight-use-package-by-default t) | |
139 | ||
140 | (defmacro use-feature (name &rest args) | |
141 | "Like `use-package', but with `straight-use-package-by-default' disabled." | |
142 | (declare (indent 1)) | |
143 | `(use-package ,name | |
144 | :straight nil | |
145 | ,@args)) | |
146 | ||
2c483b3e AB |
147 | (with-eval-after-load 'use-package-core |
148 | (let ((upflk (car use-package-font-lock-keywords))) | |
149 | (font-lock-add-keywords | |
150 | 'emacs-lisp-mode | |
151 | `((,(replace-regexp-in-string | |
152 | "use-package" "use-feature" | |
153 | (car upflk)) | |
154 | ,@(cdr upflk)))))) | |
155 | ||
33273849 AB |
156 | (with-eval-after-load 'recentf |
157 | (add-to-list 'recentf-exclude | |
158 | (expand-file-name "~/.emacs.d/straight/build/"))) | |
159 | ||
160 | (defun b/reload-init () | |
83364e5b | 161 | "Reload `user-init-file'." |
33273849 | 162 | (interactive) |
83364e5b AB |
163 | (setq b/before-user-init-time (current-time) |
164 | b/file-name-handler-alist file-name-handler-alist) | |
33273849 AB |
165 | (load user-init-file nil 'nomessage) |
166 | (b/post-init)) | |
167 | ||
168 | ;; use-package | |
169 | (straight-use-package 'use-package) | |
170 | ||
41d290a2 AB |
171 | (if nil ; set to t when need to debug init |
172 | (progn | |
173 | (setq use-package-verbose t | |
174 | use-package-expand-minimally nil | |
175 | use-package-compute-statistics t | |
176 | debug-on-error t) | |
177 | (require 'use-package)) | |
178 | (setq use-package-verbose nil | |
179 | use-package-expand-minimally t)) | |
180 | ||
181 | (setq use-package-always-defer t) | |
182 | (require 'bind-key) | |
183 | ||
b57457b2 AB |
184 | \f |
185 | ;;; Initial setup | |
186 | ||
e6c67861 AB |
187 | (defvar b/exwm-p (string= (system-name) "jirud") |
188 | "Whether or not we will be using `exwm'.") | |
189 | ||
b57457b2 | 190 | ;; keep ~/.emacs.d clean |
1060413b AB |
191 | (use-package no-littering |
192 | :demand | |
193 | :config | |
194 | (defalias 'b/etc 'no-littering-expand-etc-file-name) | |
195 | (defalias 'b/var 'no-littering-expand-var-file-name)) | |
41d290a2 | 196 | |
b57457b2 | 197 | ;; separate custom file (don't want it mixing with init.el) |
33273849 | 198 | (use-feature custom |
60ff805e | 199 | :no-require |
41d290a2 | 200 | :config |
dca50cf5 | 201 | (setq custom-file (b/etc "custom.el")) |
41d290a2 AB |
202 | (when (file-exists-p custom-file) |
203 | (load custom-file)) | |
b57457b2 | 204 | ;; while at it, treat themes as safe |
60ff805e AB |
205 | (setf custom-safe-themes t) |
206 | ;; only one custom theme at a time | |
207 | (comment | |
208 | (defadvice load-theme (before clear-previous-themes activate) | |
209 | "Clear existing theme settings instead of layering them" | |
210 | (mapc #'disable-theme custom-enabled-themes)))) | |
41d290a2 | 211 | |
b57457b2 | 212 | ;; load the secrets file if it exists, otherwise show a warning |
dca50cf5 AB |
213 | (comment |
214 | (with-demoted-errors | |
215 | (load (b/etc "secrets")))) | |
41d290a2 | 216 | |
b57457b2 | 217 | ;; better $PATH (and other environment variable) handling |
41d290a2 AB |
218 | (use-package exec-path-from-shell |
219 | :defer 0.4 | |
220 | :init | |
221 | (setq exec-path-from-shell-arguments nil | |
222 | exec-path-from-shell-check-startup-files nil) | |
223 | :config | |
224 | (exec-path-from-shell-initialize) | |
225 | ;; while we're at it, let's fix access to our running ssh-agent | |
226 | (exec-path-from-shell-copy-env "SSH_AGENT_PID") | |
227 | (exec-path-from-shell-copy-env "SSH_AUTH_SOCK")) | |
228 | ||
b57457b2 AB |
229 | ;; start up emacs server. see |
230 | ;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html#Emacs-Server | |
33273849 | 231 | (use-feature server |
41d290a2 AB |
232 | :defer 0.4 |
233 | :config (or (server-running-p) (server-mode))) | |
234 | ||
60ff805e AB |
235 | \f |
236 | ;;; Useful utilities | |
237 | ||
238 | ;; useful libraries | |
239 | (require 'cl-lib) | |
240 | (require 'subr-x) | |
241 | ||
242 | (defmacro b/setq-every (value &rest vars) | |
243 | "Set all the variables from VARS to value VALUE." | |
244 | (declare (indent defun) (debug t)) | |
245 | `(progn ,@(mapcar (lambda (x) (list 'setq x value)) vars))) | |
246 | ||
247 | (defun b/start-process (program &rest args) | |
248 | "Same as `start-process', but doesn't bother about name and buffer." | |
249 | (let ((process-name (concat program "_process")) | |
250 | (buffer-name (generate-new-buffer-name | |
251 | (concat program "_output")))) | |
252 | (apply #'start-process | |
253 | process-name buffer-name program args))) | |
254 | ||
255 | (defun b/dired-start-process (program &optional args) | |
256 | "Open current file with a PROGRAM." | |
257 | ;; Shell command looks like this: "program [ARGS]... FILE" (ARGS can | |
258 | ;; be nil, so remove it). | |
259 | (apply #'b/start-process | |
260 | program | |
261 | (remove nil (list args (dired-get-file-for-visit))))) | |
262 | ||
263 | (defun b/add-elisp-section () | |
264 | (interactive) | |
265 | (insert "\n") | |
266 | (previous-line) | |
267 | (insert "\n\f\n;;; ")) | |
268 | ||
bc2f85e1 AB |
269 | (defun b/insert-asterism () |
270 | (interactive) | |
271 | (insert "\n\n * * *\n\n")) | |
272 | ||
60ff805e AB |
273 | (defun b/no-mouse-autoselect-window () |
274 | "Conveniently disable `focus-follows-mouse'. | |
275 | For disabling the behaviour for certain buffers and/or modes." | |
276 | (make-local-variable 'mouse-autoselect-window) | |
277 | (setq mouse-autoselect-window nil)) | |
278 | ||
279 | \f | |
280 | ;;; Defaults | |
281 | ||
282 | ;;;; C-level customizations | |
283 | ||
284 | (setq | |
285 | ;; minibuffer | |
286 | enable-recursive-minibuffers t | |
287 | resize-mini-windows t | |
288 | ;; more useful frame titles | |
289 | frame-title-format '("" invocation-name " - " | |
290 | (:eval | |
291 | (if (buffer-file-name) | |
292 | (abbreviate-file-name (buffer-file-name)) | |
293 | "%b"))) | |
294 | ;; i don't feel like jumping out of my chair every now and again; so | |
295 | ;; don't BEEP! at me, emacs | |
296 | ring-bell-function 'ignore | |
297 | ;; better scrolling | |
298 | ;; scroll-margin 1 | |
299 | ;; scroll-conservatively 10000 | |
300 | scroll-step 1 | |
301 | scroll-conservatively 10 | |
302 | scroll-preserve-screen-position 1 | |
303 | ;; focus follows mouse | |
304 | mouse-autoselect-window t) | |
305 | ||
306 | (setq-default | |
307 | ;; always use space for indentation | |
308 | indent-tabs-mode nil | |
309 | tab-width 4 | |
310 | ;; cursor shape | |
311 | cursor-type 'bar) | |
312 | ||
b57457b2 AB |
313 | ;; unicode support |
314 | (comment | |
315 | (dolist (ft (fontset-list)) | |
316 | (set-fontset-font | |
317 | ft | |
318 | 'unicode | |
319 | (font-spec :name "Source Code Pro" :size 14)) | |
320 | (set-fontset-font | |
321 | ft | |
322 | 'unicode | |
323 | (font-spec :name "DejaVu Sans Mono") | |
324 | nil | |
325 | 'append) | |
326 | ;; (set-fontset-font | |
327 | ;; ft | |
328 | ;; 'unicode | |
329 | ;; (font-spec | |
330 | ;; :name "Symbola monospacified for DejaVu Sans Mono") | |
331 | ;; nil | |
332 | ;; 'append) | |
333 | ;; (set-fontset-font | |
334 | ;; ft | |
335 | ;; #x2115 ; ℕ | |
336 | ;; (font-spec :name "DejaVu Sans Mono") | |
337 | ;; nil | |
338 | ;; 'append) | |
339 | (set-fontset-font | |
340 | ft | |
341 | (cons ?Α ?ω) | |
342 | (font-spec :name "DejaVu Sans Mono" :size 14) | |
343 | nil | |
344 | 'prepend))) | |
345 | ||
60ff805e | 346 | ;;;; Elisp-level customizations |
41d290a2 | 347 | |
60ff805e AB |
348 | (use-feature startup |
349 | :no-require | |
350 | :demand | |
41d290a2 | 351 | :config |
60ff805e AB |
352 | ;; don't need to see the startup echo area message |
353 | (advice-add #'display-startup-echo-area-message :override #'ignore) | |
354 | :custom | |
355 | ;; i want *scratch* as my startup buffer | |
356 | (initial-buffer-choice t) | |
357 | ;; i don't need the default hint | |
358 | (initial-scratch-message nil) | |
359 | ;; use customizable text-mode as major mode for *scratch* | |
2568a634 | 360 | ;; (initial-major-mode 'text-mode) |
60ff805e AB |
361 | ;; inhibit buffer list when more than 2 files are loaded |
362 | (inhibit-startup-buffer-menu t) | |
363 | ;; don't need to see the startup screen or echo area message | |
364 | (inhibit-startup-screen t) | |
365 | (inhibit-startup-echo-area-message user-login-name)) | |
41d290a2 | 366 | |
60ff805e AB |
367 | (use-feature files |
368 | :no-require | |
369 | :demand | |
9fc30d4c | 370 | :custom |
60ff805e AB |
371 | ;; backups (C-h v make-backup-files RET) |
372 | (backup-by-copying t) | |
373 | (version-control t) | |
374 | (delete-old-versions t) | |
41d290a2 | 375 | |
60ff805e AB |
376 | ;; auto-save |
377 | (auto-save-file-name-transforms | |
378 | `((".*" ,(b/var "auto-save/") t))) | |
41d290a2 | 379 | |
60ff805e AB |
380 | ;; insert newline at the end of files |
381 | (require-final-newline t) | |
b57457b2 | 382 | |
60ff805e AB |
383 | ;; open read-only file buffers in view-mode |
384 | ;; (enables niceties like `q' for quit) | |
385 | (view-read-only t)) | |
41d290a2 | 386 | |
60ff805e AB |
387 | ;; disable disabled commands |
388 | (setq disabled-command-function nil) | |
41d290a2 | 389 | |
60ff805e AB |
390 | ;; lazy-person-friendly yes/no prompts |
391 | (defalias 'yes-or-no-p #'y-or-n-p) | |
b57457b2 | 392 | |
60ff805e AB |
393 | ;; enable automatic reloading of changed buffers and files |
394 | (use-feature autorevert | |
395 | :demand | |
396 | :config | |
397 | (global-auto-revert-mode 1) | |
398 | :custom | |
399 | (auto-revert-verbose nil) | |
400 | (global-auto-revert-non-file-buffers nil)) | |
b57457b2 AB |
401 | |
402 | ;; time and battery in mode-line | |
64938292 | 403 | (use-feature time |
e6c67861 | 404 | :if b/exwm-p |
e4902e0b | 405 | :demand |
64938292 AB |
406 | :config |
407 | (display-time-mode) | |
408 | :custom | |
409 | (display-time-default-load-average nil) | |
410 | (display-time-format "%a %b %-e, %-l:%M%P")) | |
411 | ||
412 | (use-feature battery | |
e6c67861 | 413 | :if b/exwm-p |
e4902e0b | 414 | :demand |
64938292 AB |
415 | :config |
416 | (display-battery-mode) | |
417 | :custom | |
9dcd3cfe | 418 | (battery-mode-line-format " %p%% %t")) |
b57457b2 | 419 | |
60ff805e AB |
420 | (use-feature fringe |
421 | :demand | |
422 | :config | |
423 | ;; smaller fringe | |
424 | ;; (fringe-mode '(3 . 1)) | |
425 | (fringe-mode nil)) | |
41d290a2 | 426 | |
60ff805e AB |
427 | (use-feature winner |
428 | :demand | |
429 | :config | |
430 | ;; enable winner-mode (C-h f winner-mode RET) | |
431 | (winner-mode 1)) | |
41d290a2 | 432 | |
60ff805e AB |
433 | (use-feature compile |
434 | :config | |
435 | ;; don't display *compilation* buffer on success. based on | |
436 | ;; https://stackoverflow.com/a/17788551, with changes to use `cl-letf' | |
437 | ;; instead of the now obsolete `flet'. | |
dca50cf5 | 438 | (defun b/compilation-finish-function (buffer outstr) |
41d290a2 AB |
439 | (unless (string-match "finished" outstr) |
440 | (switch-to-buffer-other-window buffer)) | |
441 | t) | |
442 | ||
dca50cf5 | 443 | (setq compilation-finish-functions #'b/compilation-finish-function) |
41d290a2 AB |
444 | |
445 | (require 'cl-macs) | |
446 | ||
447 | (defadvice compilation-start | |
448 | (around inhibit-display | |
449 | (command &optional mode name-function highlight-regexp)) | |
450 | (if (not (string-match "^\\(find\\|grep\\)" command)) | |
451 | (cl-letf (((symbol-function 'display-buffer) #'ignore)) | |
452 | (save-window-excursion ad-do-it)) | |
453 | ad-do-it)) | |
454 | (ad-activate 'compilation-start)) | |
455 | ||
60ff805e AB |
456 | (use-feature isearch |
457 | :custom | |
458 | ;; allow scrolling in Isearch | |
459 | (isearch-allow-scroll t) | |
460 | ;; search for non-ASCII characters: i’d like non-ASCII characters such | |
461 | ;; as ‘’“”«»‹›áⓐ𝒶 to be selected when i search for their ASCII | |
462 | ;; counterpart. shoutout to | |
463 | ;; http://endlessparentheses.com/new-in-emacs-25-1-easily-search-non-ascii-characters.html | |
464 | (search-default-mode #'char-fold-to-regexp)) | |
465 | ||
466 | ;; uncomment to extend the above behaviour to query-replace | |
467 | (comment | |
468 | (use-feature replace | |
469 | :custom | |
470 | (replace-char-fold t))) | |
b9901074 | 471 | |
33273849 | 472 | (use-feature vc |
b1a5d811 AB |
473 | :bind ("C-x v C-=" . vc-ediff)) |
474 | ||
e59c8878 AB |
475 | (use-feature vc-git |
476 | :after vc | |
477 | :custom | |
478 | (vc-git-print-log-follow t)) | |
479 | ||
33273849 | 480 | (use-feature ediff |
b1a5d811 AB |
481 | :config (add-hook 'ediff-after-quit-hook-internal 'winner-undo) |
482 | :custom ((ediff-window-setup-function 'ediff-setup-windows-plain) | |
483 | (ediff-split-window-function 'split-window-horizontally))) | |
484 | ||
60ff805e AB |
485 | (use-feature face-remap |
486 | :custom | |
487 | ;; gentler font resizing | |
488 | (text-scale-mode-step 1.05)) | |
489 | ||
490 | (use-feature mwheel | |
491 | :defer 0.4 | |
492 | :config | |
493 | (setq mouse-wheel-scroll-amount '(1 ((shift) . 1)) ; one line at a time | |
494 | mouse-wheel-progressive-speed nil ; don't accelerate scrolling | |
495 | mouse-wheel-follow-mouse t)) ; scroll window under mouse | |
496 | ||
497 | (use-feature pixel-scroll | |
498 | :defer 0.4 | |
499 | :config (pixel-scroll-mode 1)) | |
500 | ||
501 | (use-feature epg-config | |
502 | :custom | |
503 | ((epg-gpg-program (executable-find "gpg")))) | |
1d405cde | 504 | |
b98dbb3d AB |
505 | (use-feature auth-source |
506 | :custom | |
507 | (auth-sources '("~/.authinfo.gpg")) | |
508 | (authinfo-hidden (regexp-opt '("password" "client-secret" "token")))) | |
509 | ||
b57457b2 AB |
510 | \f |
511 | ;;; General bindings | |
512 | ||
41d290a2 AB |
513 | (bind-keys |
514 | ("C-c a i" . ielm) | |
515 | ||
516 | ("C-c e b" . eval-buffer) | |
2a816b71 | 517 | ("C-c e e" . eval-last-sexp) |
41d290a2 AB |
518 | ("C-c e r" . eval-region) |
519 | ||
520 | ("C-c e i" . emacs-init-time) | |
521 | ("C-c e u" . emacs-uptime) | |
dca50cf5 | 522 | ("C-c e v" . emacs-version) |
41d290a2 AB |
523 | |
524 | ("C-c F m" . make-frame-command) | |
525 | ("C-c F d" . delete-frame) | |
435306f6 | 526 | ("C-c F D" . server-edit) |
41d290a2 | 527 | |
41d290a2 AB |
528 | ("C-S-h C" . describe-char) |
529 | ("C-S-h F" . describe-face) | |
530 | ||
531 | ("C-x k" . kill-this-buffer) | |
532 | ("C-x K" . kill-buffer) | |
2a816b71 AB |
533 | ("C-x s" . save-buffer) |
534 | ("C-x S" . save-some-buffers) | |
41d290a2 | 535 | |
b57457b2 | 536 | :map emacs-lisp-mode-map |
dca50cf5 | 537 | ("<C-return>" . b/add-elisp-section)) |
41d290a2 AB |
538 | |
539 | (when (display-graphic-p) | |
540 | (unbind-key "C-z" global-map)) | |
541 | ||
500004f4 AB |
542 | (bind-keys |
543 | ;; for back and forward mouse keys | |
0365678c | 544 | ("<XF86Back>" . previous-buffer) |
500004f4 AB |
545 | ("<mouse-8>" . previous-buffer) |
546 | ("<drag-mouse-8>" . previous-buffer) | |
0365678c | 547 | ("<XF86Forward>" . next-buffer) |
500004f4 AB |
548 | ("<mouse-9>" . next-buffer) |
549 | ("<drag-mouse-9>" . next-buffer) | |
550 | ("<drag-mouse-2>" . kill-this-buffer) | |
6eb104ff | 551 | ("<drag-mouse-3>" . switch-to-buffer)) |
500004f4 | 552 | |
33273849 | 553 | (bind-keys |
58dd13d0 | 554 | :prefix-map b/straight-prefix-map |
33273849 AB |
555 | :prefix "C-c p s" |
556 | ("u" . straight-use-package) | |
557 | ("f" . straight-freeze-versions) | |
558 | ("t" . straight-thaw-versions) | |
559 | ("P" . straight-prune-build) | |
560 | ("g" . straight-get-recipe) | |
58dd13d0 | 561 | ("r" . b/reload-init) |
33273849 AB |
562 | ;; M-x ^straight-.*-all$ |
563 | ("a c" . straight-check-all) | |
564 | ("a f" . straight-fetch-all) | |
565 | ("a m" . straight-merge-all) | |
566 | ("a n" . straight-normalize-all) | |
567 | ("a F" . straight-pull-all) | |
568 | ("a P" . straight-push-all) | |
569 | ("a r" . straight-rebuild-all) | |
570 | ;; M-x ^straight-.*-package$ | |
571 | ("p c" . straight-check-package) | |
572 | ("p f" . straight-fetch-package) | |
573 | ("p m" . straight-merge-package) | |
574 | ("p n" . straight-normalize-package) | |
575 | ("p F" . straight-pull-package) | |
576 | ("p P" . straight-push-package) | |
577 | ("p r" . straight-rebuild-package)) | |
578 | ||
b57457b2 AB |
579 | \f |
580 | ;;; Essential packages | |
581 | ||
fcd29183 | 582 | (use-package exwm |
e6c67861 | 583 | :if b/exwm-p |
fcd29183 AB |
584 | :demand |
585 | :config | |
1bfeb417 AB |
586 | ;; make class name the buffer name, truncating beyond 60 characters |
587 | (defun b/exwm-rename-buffer () | |
fcd29183 AB |
588 | (interactive) |
589 | (exwm-workspace-rename-buffer | |
590 | (concat exwm-class-name ":" | |
319c6483 AB |
591 | (if (<= (length exwm-title) 60) exwm-title |
592 | (concat (substring exwm-title 0 59) "..."))))) | |
1bfeb417 AB |
593 | ;; Enable EXWM |
594 | (exwm-enable) | |
595 | :hook ((exwm-update-class . b/exwm-rename-buffer) | |
596 | (exwm-update-title . b/exwm-rename-buffer))) | |
fcd29183 | 597 | |
1bfeb417 AB |
598 | (use-feature exwm-config |
599 | :demand | |
600 | :after exwm | |
601 | :hook (exwm-init . exwm-config--fix/ido-buffer-window-other-frame)) | |
602 | ||
603 | (use-feature exwm-input | |
604 | :demand | |
bff00f78 | 605 | :after exwm |
1bfeb417 | 606 | :config |
212feb20 AB |
607 | (defun b/exwm-ws-prev-index () |
608 | "Return the index for the previous EXWM workspace, wrapping | |
609 | around if needed." | |
610 | (if (= exwm-workspace-current-index 0) | |
611 | (1- exwm-workspace-number) | |
612 | (1- exwm-workspace-current-index))) | |
613 | ||
614 | (defun b/exwm-ws-next-index () | |
615 | "Return the index for the next EXWM workspace, wrapping | |
616 | around if needed." | |
617 | (if (= exwm-workspace-current-index | |
618 | (1- exwm-workspace-number)) | |
619 | 0 | |
620 | (1+ exwm-workspace-current-index))) | |
621 | ||
1bfeb417 | 622 | ;; shorten 'C-c C-q' to 'C-q' |
24e1e73e AB |
623 | (define-key exwm-mode-map [?\C-q] #'exwm-input-send-next-key) |
624 | ||
bff00f78 AB |
625 | (setq exwm-workspace-number 4 |
626 | exwm-input-global-keys | |
1bfeb417 AB |
627 | `(([?\s-R] . exwm-reset) |
628 | ([?\s-\\] . exwm-workspace-switch) | |
63ed1869 AB |
629 | ([?\s-\s] . dmenu) |
630 | ([?\S-\s-\s] . (lambda (command) | |
631 | (interactive | |
632 | (list (read-shell-command "➜ "))) | |
633 | (start-process-shell-command | |
634 | command nil command))) | |
1bfeb417 AB |
635 | ([s-return] . (lambda () |
636 | (interactive) | |
637 | (start-process "" nil "urxvt"))) | |
638 | ([?\C-\s-\s] . counsel-linux-app) | |
639 | ([?\M-\s-\s] . (lambda () | |
640 | (interactive) | |
641 | (start-process-shell-command | |
642 | "rofi-pass" nil "rofi-pass"))) | |
d7b88f06 AB |
643 | ([?\s-h] . windmove-left) |
644 | ([?\s-j] . windmove-down) | |
645 | ([?\s-k] . windmove-up) | |
646 | ([?\s-l] . windmove-right) | |
647 | ([?\s-H] . windmove-swap-states-left) | |
648 | ([?\s-J] . windmove-swap-states-down) | |
649 | ([?\s-K] . windmove-swap-states-up) | |
650 | ([?\s-L] . windmove-swap-states-right) | |
651 | ([?\M-\s-h] . shrink-window-horizontally) | |
652 | ([?\M-\s-l] . enlarge-window-horizontally) | |
653 | ([?\M-\s-k] . shrink-window) | |
654 | ([?\M-\s-j] . enlarge-window) | |
1bfeb417 AB |
655 | ([?\s-\[] . (lambda () |
656 | (interactive) | |
657 | (exwm-workspace-switch-create | |
658 | (b/exwm-ws-prev-index)))) | |
659 | ([?\s-\]] . (lambda () | |
660 | (interactive) | |
661 | (exwm-workspace-switch-create | |
662 | (b/exwm-ws-next-index)))) | |
663 | ([?\s-{] . (lambda () | |
664 | (interactive) | |
665 | (exwm-workspace-move-window | |
666 | (b/exwm-ws-prev-index)))) | |
667 | ([?\s-}] . (lambda () | |
668 | (interactive) | |
669 | (exwm-workspace-move-window | |
670 | (b/exwm-ws-next-index)))) | |
671 | ,@(mapcar (lambda (i) | |
672 | `(,(kbd (format "s-%d" i)) . | |
673 | (lambda () | |
674 | (interactive) | |
675 | (exwm-workspace-switch-create ,i)))) | |
676 | (number-sequence 0 (1- exwm-workspace-number))) | |
677 | ([?\s-t] . exwm-floating-toggle-floating) | |
678 | ([?\s-f] . exwm-layout-toggle-fullscreen) | |
e587ce78 | 679 | ([?\s-W] . (lambda () |
1bfeb417 AB |
680 | (interactive) |
681 | (kill-buffer (current-buffer)))) | |
e587ce78 | 682 | ([?\s-Q] . (lambda () |
1bfeb417 AB |
683 | (interactive) |
684 | (exwm-manage--kill-client))) | |
685 | ([?\s-\'] . (lambda () | |
686 | (interactive) | |
687 | (start-process-shell-command | |
688 | "rofi-light" nil "rofi-light"))) | |
689 | ([XF86AudioMute] . | |
690 | (lambda () | |
691 | (interactive) | |
692 | (start-process "" nil "pamixer" "--toggle-mute"))) | |
693 | ([XF86AudioLowerVolume] . | |
694 | (lambda () | |
695 | (interactive) | |
696 | (start-process | |
697 | "" nil "pamixer" "--allow-boost" "--decrease" "5"))) | |
698 | ([XF86AudioRaiseVolume] . | |
699 | (lambda () | |
700 | (interactive) | |
701 | (start-process | |
702 | "" nil "pamixer" "--allow-boost" "--increase" "5"))) | |
703 | ([XF86AudioPlay] . | |
704 | (lambda () | |
705 | (interactive) | |
706 | (start-process "" nil "mpc" "toggle"))) | |
707 | ([XF86AudioPrev] . | |
708 | (lambda () | |
709 | (interactive) | |
710 | (start-process "" nil "mpc" "prev"))) | |
711 | ([XF86AudioNext] . | |
712 | (lambda () | |
713 | (interactive) | |
714 | (start-process "" nil "mpc" "next"))) | |
715 | ([XF86ScreenSaver] . | |
716 | (lambda () | |
717 | (interactive) | |
b94c0e47 AB |
718 | (start-process "" nil "dm-tool" "lock"))) |
719 | ([\s-XF86Back] . previous-buffer) | |
720 | ([\s-XF86Forward] . next-buffer))) | |
1bfeb417 | 721 | |
24e1e73e AB |
722 | ;; Line-editing shortcuts |
723 | (setq exwm-input-simulation-keys | |
724 | '(;; movement | |
725 | ([?\C-b] . [left]) | |
726 | ([?\M-b] . [C-left]) | |
727 | ([?\C-f] . [right]) | |
728 | ([?\M-f] . [C-right]) | |
729 | ([?\C-p] . [up]) | |
730 | ([?\C-n] . [down]) | |
731 | ([?\C-a] . [home]) | |
732 | ([?\C-e] . [end]) | |
733 | ([?\M-v] . [prior]) | |
734 | ([?\C-v] . [next]) | |
735 | ([?\C-d] . [delete]) | |
736 | ([?\C-k] . [S-end ?\C-x]) | |
1bfeb417 AB |
737 | ([?\M-<] . C-home) |
738 | ([?\M->] . C-end) | |
24e1e73e AB |
739 | ;; cut/copy/paste |
740 | ([?\C-w] . [?\C-x]) | |
741 | ([?\M-w] . [?\C-c]) | |
742 | ([?\C-y] . [?\C-v]) | |
743 | ([?\M-d] . [C-S-right ?\C-x]) | |
744 | ([?\M-\d] . [C-S-left ?\C-x]) | |
e587ce78 AB |
745 | ;; window |
746 | ([?\s-w] . [?\C-w]) | |
c86b6e8b AB |
747 | ([?\s-q] . [?\C-q]) |
748 | ;; misc | |
749 | ([?\C-s] . [?\C-f]) | |
750 | ([?\s-s] . [?\C-s]) | |
751 | ([?\C-g] . [escape])))) | |
24e1e73e | 752 | |
305e08d6 AB |
753 | (use-feature exwm-manage |
754 | :demand | |
755 | :after exwm | |
756 | :hook | |
757 | (exwm-manage-finish . (lambda () | |
758 | (when exwm-class-name | |
759 | (cond | |
305e08d6 AB |
760 | ((string= exwm-class-name "Abrowser") |
761 | (exwm-input-set-local-simulation-keys | |
762 | `(,@exwm-input-simulation-keys | |
e587ce78 | 763 | ([?\C-\S-d] . [?\C-d])))) |
cbe95dea AB |
764 | ((string= exwm-class-name "URxvt") |
765 | (exwm-input-set-local-simulation-keys | |
766 | '(([?\C-c ?\C-c] . [?\C-c]) | |
767 | ([?\C-c ?\C-u] . [?\C-u])))) | |
768 | ((string= exwm-class-name "Zathura") | |
769 | (exwm-input-set-local-simulation-keys | |
770 | '(([?\C-p] . [C-up]) | |
771 | ([?\C-n] . [C-down]))))))))) | |
305e08d6 | 772 | |
1bfeb417 AB |
773 | (use-feature exwm-randr |
774 | :demand | |
775 | :after exwm | |
776 | :config | |
256cef15 AB |
777 | (exwm-randr-enable) |
778 | :custom | |
e6c67861 | 779 | (exwm-randr-workspace-monitor-plist '(1 "VGA-1"))) |
24e1e73e | 780 | |
1bfeb417 AB |
781 | (use-feature exwm-systemtray |
782 | :demand | |
783 | :after exwm | |
784 | :config | |
785 | (exwm-systemtray-enable)) | |
24e1e73e | 786 | |
bff00f78 | 787 | (use-feature exwm-workspace) |
fcd29183 | 788 | |
5a92b319 AB |
789 | (use-package exwm-edit |
790 | :demand | |
791 | :after exwm) | |
792 | ||
33273849 AB |
793 | ;; use the org-plus-contrib package to get the whole deal |
794 | (use-package org-plus-contrib) | |
795 | ||
796 | (use-feature org | |
41d290a2 AB |
797 | :defer 0.5 |
798 | :config | |
799 | (setq org-src-tab-acts-natively t | |
800 | org-src-preserve-indentation nil | |
801 | org-edit-src-content-indentation 0 | |
802 | org-link-email-description-format "Email %c: %s" ; %.30s | |
803 | org-highlight-latex-and-related '(entities) | |
804 | org-use-speed-commands t | |
805 | org-startup-folded 'content | |
806 | org-catch-invisible-edits 'show-and-error | |
807 | org-log-done 'time) | |
66ec16e4 AB |
808 | (when (version< org-version "9.3") |
809 | (setq org-email-link-description-format | |
810 | org-link-email-description-format)) | |
41d290a2 | 811 | (add-to-list 'org-structure-template-alist '("L" . "src emacs-lisp") t) |
506ba717 | 812 | (add-to-list 'org-modules 'org-habit) |
41d290a2 AB |
813 | :bind |
814 | (("C-c a o a" . org-agenda) | |
815 | :map org-mode-map | |
816 | ("M-L" . org-insert-last-stored-link) | |
2e81c51a | 817 | ("M-O" . org-toggle-link-display)) |
41d290a2 AB |
818 | :hook ((org-mode . org-indent-mode) |
819 | (org-mode . auto-fill-mode) | |
820 | (org-mode . flyspell-mode)) | |
821 | :custom | |
561b2e77 | 822 | (org-pretty-entities t) |
41d290a2 | 823 | (org-agenda-files '("~/usr/org/todos/personal.org" |
506ba717 | 824 | "~/usr/org/todos/habits.org" |
561b2e77 | 825 | "~/src/git/masters-thesis/todo.org")) |
41d290a2 | 826 | (org-agenda-start-on-weekday 0) |
506ba717 AB |
827 | (org-agenda-time-leading-zero t) |
828 | (org-habit-graph-column 44) | |
41d290a2 AB |
829 | (org-latex-packages-alist '(("" "listings") ("" "color"))) |
830 | :custom-face | |
831 | '(org-block-begin-line ((t (:foreground "#5a5b5a" :background "#1d1f21")))) | |
832 | '(org-block ((t (:background "#1d1f21")))) | |
833 | '(org-latex-and-related ((t (:foreground "#b294bb"))))) | |
834 | ||
33273849 | 835 | (use-feature ox-latex |
41d290a2 AB |
836 | :after ox |
837 | :config | |
838 | (setq org-latex-listings 'listings | |
839 | ;; org-latex-prefer-user-labels t | |
840 | ) | |
841 | (add-to-list 'org-latex-classes | |
842 | '("IEEEtran" "\\documentclass[11pt]{IEEEtran}" | |
843 | ("\\section{%s}" . "\\section*{%s}") | |
844 | ("\\subsection{%s}" . "\\subsection*{%s}") | |
845 | ("\\subsubsection{%s}" . "\\subsubsection*{%s}") | |
846 | ("\\paragraph{%s}" . "\\paragraph*{%s}") | |
847 | ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) | |
848 | t) | |
849 | (require 'ox-beamer)) | |
850 | ||
33273849 | 851 | (use-feature ox-extra |
41d290a2 AB |
852 | :config |
853 | (ox-extras-activate '(latex-header-blocks ignore-headlines))) | |
854 | ||
b57457b2 AB |
855 | ;; asynchronous tangle, using emacs-async to asynchronously tangle an |
856 | ;; org file. closely inspired by | |
857 | ;; https://github.com/dieggsy/dotfiles/tree/cc10edf7701958eff1cd94d4081da544d882a28c/emacs.d#dotfiles | |
41d290a2 | 858 | (with-eval-after-load 'org |
dca50cf5 | 859 | (defvar b/show-async-tangle-results nil |
41d290a2 AB |
860 | "Keep *emacs* async buffers around for later inspection.") |
861 | ||
dca50cf5 | 862 | (defvar b/show-async-tangle-time nil |
41d290a2 AB |
863 | "Show the time spent tangling the file.") |
864 | ||
dca50cf5 | 865 | (defun b/async-babel-tangle () |
41d290a2 AB |
866 | "Tangle org file asynchronously." |
867 | (interactive) | |
868 | (let* ((file-tangle-start-time (current-time)) | |
869 | (file (buffer-file-name)) | |
870 | (file-nodir (file-name-nondirectory file)) | |
871 | ;; (async-quiet-switch "-q") | |
872 | (file-noext (file-name-sans-extension file))) | |
873 | (async-start | |
874 | `(lambda () | |
875 | (require 'org) | |
876 | (org-babel-tangle-file ,file)) | |
dca50cf5 | 877 | (unless b/show-async-tangle-results |
41d290a2 AB |
878 | `(lambda (result) |
879 | (if result | |
29ea9439 AB |
880 | (message "Tangled %s%s" |
881 | ,file-nodir | |
dca50cf5 | 882 | (if b/show-async-tangle-time |
29ea9439 AB |
883 | (format " (%.3fs)" |
884 | (float-time (time-subtract (current-time) | |
885 | ',file-tangle-start-time))) | |
886 | "")) | |
41d290a2 AB |
887 | (message "Tangling %s failed" ,file-nodir)))))))) |
888 | ||
889 | (add-to-list | |
890 | 'safe-local-variable-values | |
dca50cf5 | 891 | '(eval add-hook 'after-save-hook #'b/async-babel-tangle 'append 'local)) |
41d290a2 | 892 | |
b57457b2 | 893 | ;; *the* right way to do git |
41d290a2 AB |
894 | (use-package magit |
895 | :defer 0.5 | |
2a816b71 AB |
896 | :bind (("C-x g" . magit-status) |
897 | ("C-c g g" . magit-status) | |
ef6c487c AB |
898 | ("C-c g b" . magit-blame-addition) |
899 | ("C-c g l" . magit-log-buffer-file)) | |
41d290a2 AB |
900 | :config |
901 | (magit-add-section-hook 'magit-status-sections-hook | |
902 | 'magit-insert-modules | |
903 | 'magit-insert-stashes | |
904 | 'append) | |
3b3615f5 AB |
905 | ;; (magit-add-section-hook 'magit-status-sections-hook |
906 | ;; 'magit-insert-ignored-files | |
907 | ;; 'magit-insert-untracked-files | |
908 | ;; 'append) | |
41d290a2 AB |
909 | (setq magit-repository-directories '(("~/" . 0) |
910 | ("~/src/git/" . 1))) | |
911 | (nconc magit-section-initial-visibility-alist | |
912 | '(([unpulled status] . show) | |
913 | ([unpushed status] . show))) | |
3fffeb0a AB |
914 | :custom |
915 | (magit-diff-refine-hunk t) | |
916 | (magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1) | |
6ca3a7b1 | 917 | ;; (magit-completing-read-function 'magit-ido-completing-read) |
41d290a2 AB |
918 | :custom-face (magit-diff-file-heading ((t (:weight normal))))) |
919 | ||
b57457b2 | 920 | ;; recently opened files |
33273849 | 921 | (use-feature recentf |
41d290a2 | 922 | :defer 0.2 |
dca50cf5 | 923 | ;; :config |
9424b3d6 | 924 | ;; (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:") |
6eb104ff AB |
925 | :config |
926 | (recentf-mode) | |
dca50cf5 | 927 | :custom |
1060413b | 928 | (recentf-max-saved-items 2000)) |
41d290a2 | 929 | |
b57457b2 | 930 | ;; smart M-x enhancement (needed by counsel for history) |
6eb104ff AB |
931 | ;; (use-package smex) |
932 | ||
933 | (bind-keys | |
934 | ("C-c f ." . find-file) | |
935 | ("C-c f l" . find-library) | |
936 | ("C-c f r" . recentf-open-files) | |
937 | ("C-c x" . execute-extended-command)) | |
938 | ||
6ca3a7b1 AB |
939 | (comment |
940 | (use-feature ido | |
941 | :demand | |
942 | :bind | |
943 | (:map ido-common-completion-map | |
944 | ([escape] . minibuffer-keyboard-quit) | |
945 | ("DEL" . b/ido-backspace)) | |
946 | :config | |
947 | (require 'delsel) | |
948 | (defun b/ido-backspace () | |
949 | "Forward to `backward-delete-char'. On error (read-only), quit." | |
950 | (interactive) | |
951 | (condition-case nil | |
952 | (backward-delete-char 1) | |
953 | (error | |
954 | (minibuffer-keyboard-quit)))) | |
955 | (ido-mode 1) | |
956 | (ido-everywhere 1) | |
957 | :custom | |
958 | (ido-enable-flex-matching t) | |
959 | ;; (ido-enable-regexp t) | |
960 | ;; (ido-enable-prefix t) | |
961 | (ido-max-window-height 10) | |
962 | (ido-use-virtual-buffers t)) | |
963 | ||
964 | (use-package ido-vertical-mode | |
965 | :defer 0.3 | |
966 | :config | |
967 | (ido-vertical-mode 1) | |
968 | :custom | |
969 | (ido-vertical-define-keys 'C-n-C-p-up-and-down) | |
970 | (ido-vertical-show-count t)) | |
6eb104ff | 971 | |
6ca3a7b1 AB |
972 | (use-package ido-completing-read+ |
973 | :defer 0.3 | |
974 | :after ido | |
975 | :config | |
976 | (ido-ubiquitous-mode 1)) | |
6eb104ff | 977 | |
6ca3a7b1 AB |
978 | (use-package crm-custom |
979 | :defer 0.3 | |
980 | :config | |
981 | (crm-custom-mode 1)) | |
982 | ||
983 | (use-feature icomplete | |
984 | :defer 0.3 | |
985 | :config | |
986 | (icomplete-mode 1))) | |
6eb104ff AB |
987 | |
988 | (use-package amx | |
989 | :defer 0.3 | |
990 | :config | |
991 | (amx-mode)) | |
992 | ||
41d290a2 AB |
993 | (use-package ivy |
994 | :defer 0.3 | |
995 | :bind | |
996 | (:map ivy-minibuffer-map | |
997 | ([escape] . keyboard-escape-quit) | |
998 | ([S-up] . ivy-previous-history-element) | |
999 | ([S-down] . ivy-next-history-element) | |
1000 | ("DEL" . ivy-backward-delete-char)) | |
1001 | :config | |
1002 | (setq ivy-wrap t | |
6ca3a7b1 | 1003 | ;; ivy-height 14 |
41d290a2 AB |
1004 | ivy-use-virtual-buffers t |
1005 | ivy-virtual-abbreviate 'abbreviate | |
1006 | ivy-count-format "%d/%d ") | |
fcd36528 AB |
1007 | |
1008 | (defvar b/ivy-ignore-buffer-modes '(magit-mode erc-mode dired-mode)) | |
1009 | (defun b/ivy-ignore-buffer-p (str) | |
1010 | "Return non-nil if str names a buffer with a major mode | |
1011 | derived from one of `b/ivy-ignore-buffer-modes'. | |
1012 | ||
1013 | This function is intended for use with `ivy-ignore-buffers'." | |
1014 | (let* ((buf (get-buffer str)) | |
1015 | (mode (and buf (buffer-local-value 'major-mode buf)))) | |
1016 | (and mode | |
1017 | (apply #'provided-mode-derived-p mode b/ivy-ignore-buffer-modes)))) | |
1018 | (add-to-list 'ivy-ignore-buffers 'b/ivy-ignore-buffer-p) | |
1019 | ||
41d290a2 | 1020 | (ivy-mode 1) |
27113bb8 | 1021 | :custom-face |
295b1b10 | 1022 | (ivy-minibuffer-match-face-1 ((t (:background "#eeeeee")))) |
27113bb8 | 1023 | (ivy-minibuffer-match-face-2 ((t (:background "#e7e7e7" :weight bold)))) |
295b1b10 AB |
1024 | (ivy-minibuffer-match-face-3 ((t (:background "light goldenrod" :weight semi-bold)))) |
1025 | (ivy-minibuffer-match-face-4 ((t (:background "misty rose" :weight semi-bold)))) | |
27113bb8 AB |
1026 | (ivy-current-match ((((class color) (background light)) |
1027 | :background "#d7d7d7" :foreground "black") | |
1028 | (((class color) (background dark)) | |
1029 | :background "#65a7e2" :foreground "black")))) | |
41d290a2 AB |
1030 | |
1031 | (use-package swiper | |
6ca3a7b1 AB |
1032 | :demand |
1033 | :after ivy | |
ab1f4969 | 1034 | :bind (("C-S-s" . swiper-isearch))) |
41d290a2 AB |
1035 | |
1036 | (use-package counsel | |
ab1f4969 AB |
1037 | :demand |
1038 | :after ivy | |
1039 | :bind (("C-c f r" . counsel-recentf) | |
6ca3a7b1 | 1040 | :map minibuffer-local-map |
ab1f4969 | 1041 | ("C-r" . counsel-minibuffer-history)) |
6ca3a7b1 AB |
1042 | :config |
1043 | (counsel-mode 1) | |
1044 | (defalias 'locate #'counsel-locate)) | |
41d290a2 | 1045 | |
b57457b2 AB |
1046 | (comment |
1047 | (use-package helm | |
1048 | :commands (helm-M-x helm-mini helm-resume) | |
1049 | :bind (("M-x" . helm-M-x) | |
1050 | ("M-y" . helm-show-kill-ring) | |
1051 | ("C-x b" . helm-mini) | |
1052 | ("C-x C-b" . helm-buffers-list) | |
1053 | ("C-x C-f" . helm-find-files) | |
1054 | ("C-h r" . helm-info-emacs) | |
b57457b2 AB |
1055 | ("C-s-r" . helm-resume) |
1056 | :map helm-map | |
1057 | ("<tab>" . helm-execute-persistent-action) | |
1058 | ("C-i" . helm-execute-persistent-action) ; Make TAB work in terminals | |
1059 | ("C-z" . helm-select-action)) ; List actions | |
1060 | :config (helm-mode 1))) | |
1061 | ||
33273849 | 1062 | (use-feature eshell |
41d290a2 AB |
1063 | :defer 0.5 |
1064 | :commands eshell | |
1065 | :bind ("C-c a s e" . eshell) | |
1066 | :config | |
1067 | (eval-when-compile (defvar eshell-prompt-regexp)) | |
dca50cf5 | 1068 | (defun b/eshell-quit-or-delete-char (arg) |
41d290a2 AB |
1069 | (interactive "p") |
1070 | (if (and (eolp) (looking-back eshell-prompt-regexp nil)) | |
1071 | (eshell-life-is-too-much) | |
1072 | (delete-char arg))) | |
1073 | ||
dca50cf5 | 1074 | (defun b/eshell-clear () |
41d290a2 AB |
1075 | (interactive) |
1076 | (let ((inhibit-read-only t)) | |
1077 | (erase-buffer)) | |
1078 | (eshell-send-input)) | |
1079 | ||
dca50cf5 | 1080 | (defun b/eshell-setup () |
41d290a2 AB |
1081 | (make-local-variable 'company-idle-delay) |
1082 | (defvar company-idle-delay) | |
1083 | (setq company-idle-delay nil) | |
1084 | (bind-keys :map eshell-mode-map | |
dca50cf5 AB |
1085 | ("C-d" . b/eshell-quit-or-delete-char) |
1086 | ("C-S-l" . b/eshell-clear) | |
41d290a2 | 1087 | ("M-r" . counsel-esh-history) |
6eb104ff AB |
1088 | ;; ([tab] . company-complete) |
1089 | )) | |
41d290a2 | 1090 | |
dca50cf5 | 1091 | :hook (eshell-mode . b/eshell-setup) |
41d290a2 AB |
1092 | :custom |
1093 | (eshell-hist-ignoredups t) | |
1094 | (eshell-input-filter 'eshell-input-filter-initial-space)) | |
1095 | ||
33273849 | 1096 | (use-feature ibuffer |
41d290a2 | 1097 | :bind |
92df6c4f | 1098 | (("C-x C-b" . ibuffer) |
41d290a2 AB |
1099 | :map ibuffer-mode-map |
1100 | ("P" . ibuffer-backward-filter-group) | |
1101 | ("N" . ibuffer-forward-filter-group) | |
1102 | ("M-p" . ibuffer-do-print) | |
1103 | ("M-n" . ibuffer-do-shell-command-pipe-replace)) | |
1104 | :config | |
1105 | ;; Use human readable Size column instead of original one | |
1106 | (define-ibuffer-column size-h | |
1107 | (:name "Size" :inline t) | |
1108 | (cond | |
1109 | ((> (buffer-size) 1000000) (format "%7.1fM" (/ (buffer-size) 1000000.0))) | |
1110 | ((> (buffer-size) 100000) (format "%7.0fk" (/ (buffer-size) 1000.0))) | |
1111 | ((> (buffer-size) 1000) (format "%7.1fk" (/ (buffer-size) 1000.0))) | |
1112 | (t (format "%8d" (buffer-size))))) | |
1113 | :custom | |
1114 | (ibuffer-saved-filter-groups | |
1115 | '(("default" | |
1116 | ("dired" (mode . dired-mode)) | |
1117 | ("org" (mode . org-mode)) | |
1118 | ("gnus" | |
1119 | (or | |
1120 | (mode . gnus-group-mode) | |
1121 | (mode . gnus-summary-mode) | |
1122 | (mode . gnus-article-mode) | |
1123 | ;; not really, but... | |
1124 | (mode . message-mode))) | |
1125 | ("web" | |
1126 | (or | |
1127 | (mode . web-mode) | |
1128 | (mode . css-mode) | |
1129 | (mode . scss-mode) | |
1130 | (mode . js2-mode))) | |
1131 | ("shell" | |
1132 | (or | |
1133 | (mode . eshell-mode) | |
1134 | (mode . shell-mode) | |
1135 | (mode . term-mode))) | |
1136 | ("programming" | |
1137 | (or | |
1138 | (mode . python-mode) | |
1139 | (mode . c-mode) | |
1140 | (mode . c++-mode) | |
1141 | (mode . java-mode) | |
1142 | (mode . emacs-lisp-mode) | |
1143 | (mode . scheme-mode) | |
1144 | (mode . haskell-mode) | |
1145 | (mode . lean-mode) | |
99473567 | 1146 | (mode . go-mode) |
41d290a2 AB |
1147 | (mode . alloy-mode))) |
1148 | ("tex" | |
1149 | (or | |
1150 | (mode . bibtex-mode) | |
1151 | (mode . latex-mode))) | |
1152 | ("emacs" | |
1153 | (or | |
1154 | (name . "^\\*scratch\\*$") | |
1155 | (name . "^\\*Messages\\*$"))) | |
319c6483 | 1156 | ("exwm" (mode . exwm-mode)) |
41d290a2 AB |
1157 | ("erc" (mode . erc-mode))))) |
1158 | (ibuffer-formats | |
1159 | '((mark modified read-only locked " " | |
319c6483 | 1160 | (name 72 72 :left :elide) |
41d290a2 AB |
1161 | " " |
1162 | (size-h 9 -1 :right) | |
1163 | " " | |
1164 | (mode 16 16 :left :elide) | |
1165 | " " filename-and-process) | |
1166 | (mark " " | |
1167 | (name 16 -1) | |
1168 | " " filename))) | |
1169 | :hook (ibuffer . (lambda () (ibuffer-switch-to-saved-filter-groups "default")))) | |
1170 | ||
33273849 | 1171 | (use-feature outline |
2e81c51a | 1172 | :disabled |
41d290a2 AB |
1173 | :hook (prog-mode . outline-minor-mode) |
1174 | :bind | |
1175 | (:map | |
1176 | outline-minor-mode-map | |
1177 | ("<s-tab>" . outline-toggle-children) | |
1178 | ("M-p" . outline-previous-visible-heading) | |
1179 | ("M-n" . outline-next-visible-heading) | |
dca50cf5 | 1180 | :prefix-map b/outline-prefix-map |
ed8c4fa9 | 1181 | :prefix "s-O" |
41d290a2 AB |
1182 | ("TAB" . outline-toggle-children) |
1183 | ("a" . outline-hide-body) | |
1184 | ("H" . outline-hide-body) | |
1185 | ("S" . outline-show-all) | |
1186 | ("h" . outline-hide-subtree) | |
1187 | ("s" . outline-show-subtree))) | |
1188 | ||
33273849 | 1189 | (use-feature ls-lisp |
41d290a2 AB |
1190 | :custom (ls-lisp-dirs-first t)) |
1191 | ||
33273849 | 1192 | (use-feature dired |
41d290a2 | 1193 | :config |
14bd6398 AB |
1194 | (setq dired-dwim-target t |
1195 | dired-listing-switches "-alh" | |
41d290a2 AB |
1196 | ls-lisp-use-insert-directory-program nil) |
1197 | ||
1198 | ;; easily diff 2 marked files | |
1199 | ;; https://oremacs.com/2017/03/18/dired-ediff/ | |
1200 | (defun dired-ediff-files () | |
1201 | (interactive) | |
1202 | (require 'dired-aux) | |
1203 | (defvar ediff-after-quit-hook-internal) | |
1204 | (let ((files (dired-get-marked-files)) | |
1205 | (wnd (current-window-configuration))) | |
1206 | (if (<= (length files) 2) | |
1207 | (let ((file1 (car files)) | |
1208 | (file2 (if (cdr files) | |
1209 | (cadr files) | |
1210 | (read-file-name | |
1211 | "file: " | |
1212 | (dired-dwim-target-directory))))) | |
1213 | (if (file-newer-than-file-p file1 file2) | |
1214 | (ediff-files file2 file1) | |
1215 | (ediff-files file1 file2)) | |
1216 | (add-hook 'ediff-after-quit-hook-internal | |
1217 | (lambda () | |
1218 | (setq ediff-after-quit-hook-internal nil) | |
1219 | (set-window-configuration wnd)))) | |
1220 | (error "no more than 2 files should be marked")))) | |
06ee5a00 AB |
1221 | |
1222 | (require 'dired-x) | |
1223 | (setq dired-guess-shell-alist-user | |
1224 | '(("\\.pdf\\'" "evince" "zathura" "okular") | |
1225 | ("\\.doc\\'" "libreoffice") | |
1226 | ("\\.docx\\'" "libreoffice") | |
1227 | ("\\.ppt\\'" "libreoffice") | |
1228 | ("\\.pptx\\'" "libreoffice") | |
1229 | ("\\.xls\\'" "libreoffice") | |
1230 | ("\\.xlsx\\'" "libreoffice") | |
1231 | ("\\.flac\\'" "mpv"))) | |
41d290a2 AB |
1232 | :bind (:map dired-mode-map |
1233 | ("b" . dired-up-directory) | |
1234 | ("e" . dired-ediff-files) | |
1235 | ("E" . dired-toggle-read-only) | |
1236 | ("\\" . dired-hide-details-mode) | |
1237 | ("z" . (lambda () | |
1238 | (interactive) | |
dca50cf5 | 1239 | (b/dired-start-process "zathura")))) |
41d290a2 AB |
1240 | :hook (dired-mode . dired-hide-details-mode)) |
1241 | ||
33273849 | 1242 | (use-feature help |
41d290a2 AB |
1243 | :config |
1244 | (temp-buffer-resize-mode) | |
1245 | (setq help-window-select t)) | |
1246 | ||
33273849 | 1247 | (use-feature tramp |
41d290a2 AB |
1248 | :config |
1249 | (add-to-list 'tramp-default-proxies-alist '(nil "\\`root\\'" "/ssh:%h:")) | |
1250 | (add-to-list 'tramp-default-proxies-alist '("localhost" nil nil)) | |
1251 | (add-to-list 'tramp-default-proxies-alist | |
1252 | (list (regexp-quote (system-name)) nil nil))) | |
1253 | ||
1254 | (use-package dash | |
1255 | :config (dash-enable-font-lock)) | |
1256 | ||
33273849 | 1257 | (use-feature doc-view |
41d290a2 AB |
1258 | :bind (:map doc-view-mode-map |
1259 | ("M-RET" . image-previous-line))) | |
1260 | ||
b57457b2 AB |
1261 | \f |
1262 | ;;; Editing | |
1263 | ||
1264 | ;; highlight uncommitted changes in the left fringe | |
41d290a2 | 1265 | (use-package diff-hl |
df1c9bc8 | 1266 | :defer 0.6 |
41d290a2 AB |
1267 | :config |
1268 | (setq diff-hl-draw-borders nil) | |
1269 | (global-diff-hl-mode) | |
1270 | :hook (magit-post-refresh . diff-hl-magit-post-refresh)) | |
1271 | ||
b57457b2 | 1272 | ;; display Lisp objects at point in the echo area |
33273849 | 1273 | (use-feature eldoc |
41d290a2 AB |
1274 | :when (version< "25" emacs-version) |
1275 | :config (global-eldoc-mode)) | |
1276 | ||
b57457b2 | 1277 | ;; highlight matching parens |
33273849 | 1278 | (use-feature paren |
41d290a2 AB |
1279 | :demand |
1280 | :config (show-paren-mode)) | |
1281 | ||
33273849 | 1282 | (use-feature elec-pair |
40eddfea AB |
1283 | :demand |
1284 | :config (electric-pair-mode)) | |
1285 | ||
33273849 | 1286 | (use-feature simple |
60ff805e AB |
1287 | :config (column-number-mode) |
1288 | :custom | |
1289 | ;; Save what I copy into clipboard from other applications into Emacs' | |
1290 | ;; kill-ring, which would allow me to still be able to easily access | |
1291 | ;; it in case I kill (cut or copy) something else inside Emacs before | |
1292 | ;; yanking (pasting) what I'd originally intended to. | |
1293 | (save-interprogram-paste-before-kill t)) | |
41d290a2 | 1294 | |
b57457b2 | 1295 | ;; save minibuffer history |
33273849 | 1296 | (use-feature savehist |
1060413b | 1297 | :demand |
dca50cf5 AB |
1298 | :config |
1299 | (savehist-mode) | |
1060413b | 1300 | (add-to-list 'savehist-additional-variables 'kill-ring)) |
41d290a2 | 1301 | |
b57457b2 | 1302 | ;; automatically save place in files |
33273849 | 1303 | (use-feature saveplace |
41d290a2 | 1304 | :when (version< "25" emacs-version) |
1060413b | 1305 | :config (save-place-mode)) |
41d290a2 | 1306 | |
33273849 | 1307 | (use-feature prog-mode |
41d290a2 AB |
1308 | :config (global-prettify-symbols-mode) |
1309 | (defun indicate-buffer-boundaries-left () | |
1310 | (setq indicate-buffer-boundaries 'left)) | |
1311 | (add-hook 'prog-mode-hook #'indicate-buffer-boundaries-left)) | |
1312 | ||
33273849 | 1313 | (use-feature text-mode |
bc2f85e1 | 1314 | :bind (:map text-mode-map ("C-*" . b/insert-asterism)) |
54209e74 | 1315 | :hook (text-mode . indicate-buffer-boundaries-left)) |
41d290a2 | 1316 | |
33273849 | 1317 | (use-feature conf-mode |
300b7363 AB |
1318 | :mode "\\.*rc$") |
1319 | ||
33273849 | 1320 | (use-feature sh-mode |
300b7363 AB |
1321 | :mode "\\.bashrc$") |
1322 | ||
41d290a2 | 1323 | (use-package company |
41d290a2 AB |
1324 | :bind |
1325 | (:map company-active-map | |
1326 | ([tab] . company-complete-common-or-cycle) | |
d39234b9 AB |
1327 | ([escape] . company-abort) |
1328 | ("C-p" . company-select-previous-or-abort) | |
1329 | ("C-n" . company-select-next-or-abort)) | |
41d290a2 AB |
1330 | :custom |
1331 | (company-minimum-prefix-length 1) | |
1332 | (company-selection-wrap-around t) | |
1333 | (company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]") | |
1334 | (company-dabbrev-downcase nil) | |
1335 | (company-dabbrev-ignore-case nil) | |
6eb104ff AB |
1336 | ;; :config |
1337 | ;; (global-company-mode t) | |
1338 | ) | |
41d290a2 AB |
1339 | |
1340 | (use-package flycheck | |
1341 | :defer 0.6 | |
1342 | :hook (prog-mode . flycheck-mode) | |
1343 | :bind | |
1344 | (:map flycheck-mode-map | |
1345 | ("M-P" . flycheck-previous-error) | |
1346 | ("M-N" . flycheck-next-error)) | |
1347 | :config | |
1348 | ;; Use the load-path from running Emacs when checking elisp files | |
1349 | (setq flycheck-emacs-lisp-load-path 'inherit) | |
1350 | ||
1351 | ;; Only flycheck when I actually save the buffer | |
54209e74 AB |
1352 | (setq flycheck-check-syntax-automatically '(mode-enabled save)) |
1353 | :custom (flycheck-mode-line-prefix "flyc")) | |
1354 | ||
d141ce11 | 1355 | (use-feature flyspell) |
41d290a2 AB |
1356 | |
1357 | ;; http://endlessparentheses.com/ispell-and-apostrophes.html | |
33273849 | 1358 | (use-feature ispell |
41d290a2 AB |
1359 | :defer 0.6 |
1360 | :config | |
1361 | ;; ’ can be part of a word | |
1362 | (setq ispell-local-dictionary-alist | |
1363 | `((nil "[[:alpha:]]" "[^[:alpha:]]" | |
b1ed9ee8 AB |
1364 | "['\x2019]" nil ("-B") nil utf-8)) |
1365 | ispell-program-name (executable-find "hunspell")) | |
41d290a2 AB |
1366 | ;; don't send ’ to the subprocess |
1367 | (defun endless/replace-apostrophe (args) | |
1368 | (cons (replace-regexp-in-string | |
1369 | "’" "'" (car args)) | |
1370 | (cdr args))) | |
1371 | (advice-add #'ispell-send-string :filter-args | |
1372 | #'endless/replace-apostrophe) | |
1373 | ||
1374 | ;; convert ' back to ’ from the subprocess | |
1375 | (defun endless/replace-quote (args) | |
1376 | (if (not (derived-mode-p 'org-mode)) | |
1377 | args | |
1378 | (cons (replace-regexp-in-string | |
1379 | "'" "’" (car args)) | |
1380 | (cdr args)))) | |
1381 | (advice-add #'ispell-parse-output :filter-args | |
1382 | #'endless/replace-quote)) | |
1383 | ||
33273849 | 1384 | (use-feature abbrev |
1060413b | 1385 | :hook (text-mode . abbrev-mode)) |
54209e74 | 1386 | |
b57457b2 AB |
1387 | \f |
1388 | ;;; Programming modes | |
1389 | ||
33273849 | 1390 | (use-feature lisp-mode |
41d290a2 | 1391 | :config |
41d290a2 AB |
1392 | (defun indent-spaces-mode () |
1393 | (setq indent-tabs-mode nil)) | |
1394 | (add-hook 'lisp-interaction-mode-hook #'indent-spaces-mode)) | |
1395 | ||
33273849 | 1396 | (use-feature reveal |
54209e74 AB |
1397 | :hook (emacs-lisp-mode . reveal-mode)) |
1398 | ||
d141ce11 | 1399 | (use-feature elisp-mode) |
54209e74 | 1400 | |
33273849 AB |
1401 | (use-package alloy-mode |
1402 | :straight (:host github :repo "dwwmmn/alloy-mode") | |
1403 | :mode "\\.als\\'" | |
d1ba7028 AB |
1404 | :config (setq alloy-basic-offset 2) |
1405 | :hook (alloy-mode . (lambda () (setq-local indent-tabs-mode nil)))) | |
33273849 AB |
1406 | |
1407 | (eval-when-compile (defvar lean-mode-map)) | |
1408 | (use-package lean-mode | |
33273849 AB |
1409 | :defer 0.4 |
1410 | :bind (:map lean-mode-map | |
1411 | ("S-SPC" . company-complete)) | |
1412 | :config | |
1413 | (require 'lean-input) | |
1414 | (setq default-input-method "Lean" | |
1415 | lean-input-tweak-all '(lean-input-compose | |
1416 | (lean-input-prepend "/") | |
1417 | (lean-input-nonempty)) | |
1418 | lean-input-user-translations '(("/" "/"))) | |
1419 | (lean-input-setup)) | |
1420 | ||
1421 | (comment | |
dca50cf5 AB |
1422 | (use-package proof-site ; for Coq |
1423 | :straight proof-general) | |
1424 | ||
dca50cf5 AB |
1425 | (use-package haskell-mode |
1426 | :config | |
1427 | (setq haskell-indentation-layout-offset 4 | |
1428 | haskell-indentation-left-offset 4 | |
1429 | flycheck-checker 'haskell-hlint | |
1430 | flycheck-disabled-checkers '(haskell-stack-ghc haskell-ghc))) | |
1431 | ||
1432 | (use-package dante | |
1433 | :after haskell-mode | |
1434 | :commands dante-mode | |
1435 | :hook (haskell-mode . dante-mode)) | |
1436 | ||
1437 | (use-package hlint-refactor | |
1438 | :after haskell-mode | |
1439 | :bind (:map hlint-refactor-mode-map | |
1440 | ("C-c l b" . hlint-refactor-refactor-buffer) | |
1441 | ("C-c l r" . hlint-refactor-refactor-at-point)) | |
1442 | :hook (haskell-mode . hlint-refactor-mode)) | |
1443 | ||
1444 | (use-package flycheck-haskell | |
1445 | :after haskell-mode) | |
1446 | ;; alternative: hs-lint https://github.com/ndmitchell/hlint/blob/20e116a043f2073c57b17b24ae6364b5e433ba7e/data/hs-lint.el | |
1447 | ) | |
41d290a2 | 1448 | |
33273849 | 1449 | (use-feature sgml-mode |
41d290a2 AB |
1450 | :config |
1451 | (setq sgml-basic-offset 2)) | |
1452 | ||
33273849 | 1453 | (use-feature css-mode |
41d290a2 AB |
1454 | :config |
1455 | (setq css-indent-offset 2)) | |
1456 | ||
1457 | (use-package web-mode | |
1458 | :mode "\\.html\\'" | |
1459 | :config | |
dca50cf5 | 1460 | (b/setq-every 2 |
41d290a2 AB |
1461 | web-mode-code-indent-offset |
1462 | web-mode-css-indent-offset | |
1463 | web-mode-markup-indent-offset)) | |
1464 | ||
1465 | (use-package emmet-mode | |
1466 | :after (:any web-mode css-mode sgml-mode) | |
1467 | :bind* (("C-)" . emmet-next-edit-point) | |
1468 | ("C-(" . emmet-prev-edit-point)) | |
1469 | :config | |
1470 | (unbind-key "C-j" emmet-mode-keymap) | |
1471 | (setq emmet-move-cursor-between-quotes t) | |
1472 | :hook (web-mode css-mode html-mode sgml-mode)) | |
1473 | ||
b57457b2 AB |
1474 | (comment |
1475 | (use-package meghanada | |
1476 | :bind | |
1477 | (:map meghanada-mode-map | |
1478 | (("C-M-o" . meghanada-optimize-import) | |
1479 | ("C-M-t" . meghanada-import-all))) | |
1480 | :hook (java-mode . meghanada-mode))) | |
1481 | ||
1482 | (comment | |
1483 | (use-package treemacs | |
1484 | :config (setq treemacs-never-persist t)) | |
1485 | ||
1486 | (use-package yasnippet | |
1487 | :config | |
1488 | ;; (yas-global-mode) | |
1489 | ) | |
1490 | ||
1491 | (use-package lsp-mode | |
1492 | :init (setq lsp-eldoc-render-all nil | |
1493 | lsp-highlight-symbol-at-point nil) | |
1494 | ) | |
1495 | ||
1496 | (use-package hydra) | |
1497 | ||
1498 | (use-package company-lsp | |
1499 | :after company | |
1500 | :config | |
1501 | (setq company-lsp-cache-candidates t | |
1502 | company-lsp-async t)) | |
1503 | ||
1504 | (use-package lsp-ui | |
1505 | :config | |
1506 | (setq lsp-ui-sideline-update-mode 'point)) | |
1507 | ||
1508 | (use-package lsp-java | |
1509 | :config | |
1510 | (add-hook 'java-mode-hook | |
63102057 AB |
1511 | (lambda () |
1512 | (setq-local company-backends (list 'company-lsp)))) | |
b57457b2 AB |
1513 | |
1514 | (add-hook 'java-mode-hook 'lsp-java-enable) | |
1515 | (add-hook 'java-mode-hook 'flycheck-mode) | |
1516 | (add-hook 'java-mode-hook 'company-mode) | |
1517 | (add-hook 'java-mode-hook 'lsp-ui-mode)) | |
1518 | ||
1519 | (use-package dap-mode | |
1520 | :after lsp-mode | |
1521 | :config | |
1522 | (dap-mode t) | |
1523 | (dap-ui-mode t)) | |
1524 | ||
1525 | (use-package dap-java | |
1526 | :after (lsp-java)) | |
1527 | ||
1528 | (use-package lsp-java-treemacs | |
1529 | :after (treemacs))) | |
1530 | ||
1531 | (comment | |
1532 | (use-package eclim | |
1533 | :bind (:map eclim-mode-map ("S-SPC" . company-complete)) | |
1534 | :hook ((java-mode . eclim-mode) | |
1535 | (eclim-mode . (lambda () | |
1536 | (make-local-variable 'company-idle-delay) | |
1537 | (defvar company-idle-delay) | |
1538 | ;; (setq company-idle-delay 0.7) | |
1539 | (setq company-idle-delay nil)))) | |
1540 | :custom | |
1541 | (eclim-auto-save nil) | |
1542 | ;; (eclimd-default-workspace "~/src/eclipse-workspace-exp") | |
1543 | (eclim-executable "~/.p2/pool/plugins/org.eclim_2.8.0/bin/eclim") | |
1544 | (eclim-eclipse-dirs '("~/usr/eclipse/dsl-2018-09/eclipse")))) | |
1545 | ||
1060413b | 1546 | (use-package geiser) |
41d290a2 | 1547 | |
33273849 | 1548 | (use-feature geiser-guile |
41d290a2 AB |
1549 | :config |
1550 | (setq geiser-guile-load-path "~/src/git/guix")) | |
1551 | ||
1552 | (use-package guix) | |
1553 | ||
b57457b2 AB |
1554 | (comment |
1555 | (use-package auctex | |
1556 | :custom | |
1557 | (font-latex-fontify-sectioning 'color))) | |
1558 | ||
99473567 AB |
1559 | (use-package go-mode) |
1560 | ||
f704f564 AB |
1561 | (use-package po-mode |
1562 | :hook | |
1563 | (po-mode . (lambda () (run-with-timer 0.1 nil 'View-exit)))) | |
1564 | ||
33273849 | 1565 | (use-feature tex-mode |
748bd8ac AB |
1566 | :config |
1567 | (cl-delete-if | |
1568 | (lambda (p) (string-match "^---?" (car p))) | |
0758ec38 AB |
1569 | tex--prettify-symbols-alist) |
1570 | :hook ((tex-mode . auto-fill-mode) | |
3457307b | 1571 | (tex-mode . flyspell-mode))) |
748bd8ac | 1572 | |
a4eace51 | 1573 | (use-package george-mode |
1d01c927 AB |
1574 | :straight (:host nil :repo "https://git.shemshak.org/amin/george-mode") |
1575 | :mode "\\.grg\\'") | |
1576 | ||
b57457b2 AB |
1577 | \f |
1578 | ;;; Theme | |
1579 | ||
dca50cf5 AB |
1580 | (add-to-list 'custom-theme-load-path |
1581 | (expand-file-name | |
1582 | (convert-standard-filename "lisp") user-emacs-directory)) | |
b57457b2 AB |
1583 | (load-theme 'tangomod t) |
1584 | ||
1585 | (use-package smart-mode-line | |
1586 | :commands (sml/apply-theme) | |
1587 | :demand | |
1588 | :config | |
0f4b61b6 | 1589 | (setq sml/theme 'tangomod) |
26906e22 AB |
1590 | (sml/setup) |
1591 | (smart-mode-line-enable)) | |
b57457b2 | 1592 | |
cce35aca AB |
1593 | (use-package doom-modeline |
1594 | :disabled | |
1595 | :demand | |
1596 | :hook (after-init . doom-modeline-init) | |
1597 | :custom | |
1598 | (doom-modeline-buffer-file-name-style 'relative-to-project)) | |
1599 | ||
96611976 | 1600 | (use-package doom-themes) |
eb42934e AB |
1601 | |
1602 | (use-package solarized-theme | |
96611976 AB |
1603 | :disabled |
1604 | :config | |
1605 | (load-theme 'solarized-light t)) | |
1606 | ||
1607 | (use-package moody | |
d4afaf1b | 1608 | :disabled |
eb42934e AB |
1609 | :demand |
1610 | :config | |
96611976 | 1611 | (setq x-underline-at-descent-line t) |
eb42934e AB |
1612 | (let ((line (face-attribute 'mode-line :underline))) |
1613 | (set-face-attribute 'mode-line nil :overline line) | |
1614 | (set-face-attribute 'mode-line-inactive nil :overline line) | |
1615 | (set-face-attribute 'mode-line-inactive nil :underline line) | |
1616 | (set-face-attribute 'mode-line nil :box nil) | |
1617 | (set-face-attribute 'mode-line-inactive nil :box nil) | |
958286c5 | 1618 | (set-face-attribute 'mode-line-inactive nil :background "#e1e1e1")) ; d3d7cf |
eb42934e AB |
1619 | (moody-replace-mode-line-buffer-identification) |
1620 | (moody-replace-vc-mode)) | |
b57457b2 | 1621 | |
0b085e06 AB |
1622 | (use-package mini-modeline |
1623 | :disabled | |
1624 | :demand | |
1625 | :config (mini-modeline-mode)) | |
1626 | ||
dca50cf5 | 1627 | (defvar b/org-mode-font-lock-keywords |
b57457b2 AB |
1628 | '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)" |
1629 | (1 '(:foreground "#5a5b5a" :background "#292b2b") t) ; directive | |
1630 | (3 '(:foreground "#81a2be" :background "#292b2b") t) ; kind | |
96611976 AB |
1631 | (4 '(:foreground "#c5c8c6") t))) ; title |
1632 | "For use with the `doom-tomorrow-night' theme.") | |
b57457b2 | 1633 | |
dca50cf5 | 1634 | (defun b/lights-on () |
b57457b2 AB |
1635 | "Enable my favourite light theme." |
1636 | (interactive) | |
1637 | (mapc #'disable-theme custom-enabled-themes) | |
96611976 | 1638 | (load-theme 'tangomod t) |
0f4b61b6 | 1639 | (sml/apply-theme 'tangomod) |
96611976 | 1640 | (font-lock-remove-keywords |
e6c67861 | 1641 | 'org-mode b/org-mode-font-lock-keywords) |
d7e02391 AB |
1642 | (when (featurep 'erc-hl-nicks) |
1643 | (erc-hl-nicks-reset-face-table)) | |
e6c67861 AB |
1644 | (when (featurep 'exwm-systemtray) |
1645 | (exwm-systemtray--refresh))) | |
b57457b2 | 1646 | |
dca50cf5 | 1647 | (defun b/lights-off () |
b57457b2 AB |
1648 | "Go dark." |
1649 | (interactive) | |
1650 | (mapc #'disable-theme custom-enabled-themes) | |
96611976 | 1651 | (load-theme 'doom-one t) |
d4afaf1b | 1652 | (sml/apply-theme 'automatic) |
96611976 | 1653 | (font-lock-add-keywords |
e6c67861 | 1654 | 'org-mode b/org-mode-font-lock-keywords t) |
d7e02391 AB |
1655 | (when (featurep 'erc-hl-nicks) |
1656 | (erc-hl-nicks-reset-face-table)) | |
e6c67861 AB |
1657 | (when (featurep 'exwm-systemtray) |
1658 | (exwm-systemtray--refresh))) | |
b57457b2 AB |
1659 | |
1660 | (bind-keys | |
2e81c51a AB |
1661 | ("C-c t d" . b/lights-off) |
1662 | ("C-c t l" . b/lights-on)) | |
b57457b2 AB |
1663 | |
1664 | \f | |
1665 | ;;; Emacs enhancements & auxiliary packages | |
1666 | ||
dca50cf5 | 1667 | (use-package man |
41d290a2 AB |
1668 | :config (setq Man-width 80)) |
1669 | ||
1670 | (use-package which-key | |
1671 | :defer 0.4 | |
1672 | :config | |
1673 | (which-key-add-key-based-replacements | |
1674 | ;; prefixes for global prefixes and minor modes | |
1675 | "C-c @" "outline" | |
1676 | "C-c !" "flycheck" | |
1677 | "C-c 8" "typo" | |
1678 | "C-c 8 -" "typo/dashes" | |
1679 | "C-c 8 <" "typo/left-brackets" | |
1680 | "C-c 8 >" "typo/right-brackets" | |
b549b760 | 1681 | "C-x RET" "coding system" |
41d290a2 | 1682 | "C-x 8" "unicode" |
b549b760 | 1683 | "C-x @" "event modifiers" |
41d290a2 AB |
1684 | "C-x a" "abbrev/expand" |
1685 | "C-x r" "rectangle/register/bookmark" | |
b549b760 | 1686 | "C-x t" "tabs" |
41d290a2 | 1687 | "C-x v" "version control" |
b549b760 AB |
1688 | "C-x X" "edebug" |
1689 | "C-x C-a" "edebug" | |
1690 | "C-x C-k" "kmacro" | |
41d290a2 | 1691 | ;; prefixes for my personal bindings |
b549b760 | 1692 | "C-c &" "yasnippet" |
41d290a2 AB |
1693 | "C-c a" "applications" |
1694 | "C-c a e" "erc" | |
1695 | "C-c a o" "org" | |
1696 | "C-c a s" "shells" | |
2e81c51a | 1697 | "C-c b" "buffers" |
41d290a2 AB |
1698 | "C-c c" "compile-and-comments" |
1699 | "C-c e" "eval" | |
1700 | "C-c f" "files" | |
1701 | "C-c F" "frames" | |
ef6c487c | 1702 | "C-c g" "magit" |
41d290a2 AB |
1703 | "C-S-h" "help(ful)" |
1704 | "C-c m" "multiple-cursors" | |
1705 | "C-c P" "projectile" | |
1706 | "C-c P s" "projectile/search" | |
1707 | "C-c P x" "projectile/execute" | |
1708 | "C-c P 4" "projectile/other-window" | |
b549b760 AB |
1709 | "C-c p" "package management" |
1710 | "C-c ps" "straight" | |
1711 | "C-c psa" "all" | |
1712 | "C-c psp" "package" | |
41d290a2 | 1713 | "C-c q" "boxquote" |
2e81c51a AB |
1714 | "C-c t" "themes" |
1715 | ;; "s-O" "outline" | |
ef6c487c | 1716 | ) |
41d290a2 AB |
1717 | |
1718 | ;; prefixes for major modes | |
1719 | (which-key-add-major-mode-key-based-replacements 'message-mode | |
7cc51891 | 1720 | "C-c f n" "footnote") |
41d290a2 AB |
1721 | (which-key-add-major-mode-key-based-replacements 'org-mode |
1722 | "C-c C-v" "org-babel") | |
1723 | (which-key-add-major-mode-key-based-replacements 'web-mode | |
1724 | "C-c C-a" "web/attributes" | |
1725 | "C-c C-b" "web/blocks" | |
1726 | "C-c C-d" "web/dom" | |
1727 | "C-c C-e" "web/element" | |
1728 | "C-c C-t" "web/tags") | |
1729 | ||
1730 | (which-key-mode) | |
1731 | :custom | |
1732 | (which-key-add-column-padding 5) | |
1733 | (which-key-max-description-length 32)) | |
1734 | ||
b57457b2 | 1735 | (use-package crux ; results in Waiting for git... [2 times] |
41d290a2 | 1736 | :defer 0.4 |
2a816b71 | 1737 | :bind (("C-c d" . crux-duplicate-current-line-or-region) |
41d290a2 | 1738 | ("C-c D" . crux-duplicate-and-comment-current-line-or-region) |
205870c7 AB |
1739 | ("C-c f C" . crux-copy-file-preserve-attributes) |
1740 | ("C-c f D" . crux-delete-file-and-buffer) | |
1741 | ("C-c f R" . crux-rename-file-and-buffer) | |
41d290a2 AB |
1742 | ("C-c j" . crux-top-join-line) |
1743 | ("C-S-j" . crux-top-join-line))) | |
1744 | ||
5b10d879 AB |
1745 | (use-package mwim |
1746 | :bind (("C-a" . mwim-beginning-of-code-or-line) | |
1747 | ("C-e" . mwim-end-of-code-or-line) | |
1748 | ("<home>" . mwim-beginning-of-line-or-code) | |
1749 | ("<end>" . mwim-end-of-line-or-code))) | |
41d290a2 AB |
1750 | |
1751 | (use-package projectile | |
26906e22 | 1752 | :defer 0.5 |
41d290a2 AB |
1753 | :bind-keymap ("C-c P" . projectile-command-map) |
1754 | :config | |
1755 | (projectile-mode) | |
1756 | ||
dca50cf5 | 1757 | (defun b/projectile-mode-line-fun () |
26906e22 AB |
1758 | "Report project name and type in the modeline." |
1759 | (let ((project-name (projectile-project-name)) | |
1760 | (project-type (projectile-project-type))) | |
1761 | (format "%s%s" | |
1762 | projectile-mode-line-prefix | |
1763 | (if project-type | |
1764 | (format ":%s" project-type) | |
1765 | "")))) | |
dca50cf5 | 1766 | (setq projectile-mode-line-function 'b/projectile-mode-line-fun) |
26906e22 | 1767 | |
41d290a2 AB |
1768 | (defun my-projectile-invalidate-cache (&rest _args) |
1769 | ;; ignore the args to `magit-checkout' | |
1770 | (projectile-invalidate-cache nil)) | |
1771 | ||
1772 | (eval-after-load 'magit-branch | |
1773 | '(progn | |
1774 | (advice-add 'magit-checkout | |
1775 | :after #'my-projectile-invalidate-cache) | |
1776 | (advice-add 'magit-branch-and-checkout | |
1777 | :after #'my-projectile-invalidate-cache))) | |
54209e74 | 1778 | :custom |
295b1b10 | 1779 | (projectile-completion-system 'ivy) |
54209e74 | 1780 | (projectile-mode-line-prefix " proj")) |
41d290a2 AB |
1781 | |
1782 | (use-package helpful | |
1783 | :defer 0.6 | |
1784 | :bind | |
1785 | (("C-S-h c" . helpful-command) | |
1786 | ("C-S-h f" . helpful-callable) ; helpful-function | |
1787 | ("C-S-h v" . helpful-variable) | |
1788 | ("C-S-h k" . helpful-key) | |
1789 | ("C-S-h p" . helpful-at-point))) | |
1790 | ||
5b10d879 AB |
1791 | (use-package unkillable-scratch |
1792 | :defer 0.6 | |
1793 | :config | |
1794 | (unkillable-scratch 1) | |
1795 | :custom | |
1796 | (unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$"))) | |
41d290a2 | 1797 | |
5b10d879 AB |
1798 | ;; ,---- |
1799 | ;; | make pretty boxed quotes like this | |
1800 | ;; `---- | |
1801 | (use-package boxquote | |
1802 | :defer 0.6 | |
1803 | :bind | |
1804 | (:prefix-map b/boxquote-prefix-map | |
1805 | :prefix "C-c q" | |
1806 | ("b" . boxquote-buffer) | |
1807 | ("B" . boxquote-insert-buffer) | |
1808 | ("d" . boxquote-defun) | |
1809 | ("F" . boxquote-insert-file) | |
1810 | ("hf" . boxquote-describe-function) | |
1811 | ("hk" . boxquote-describe-key) | |
1812 | ("hv" . boxquote-describe-variable) | |
1813 | ("hw" . boxquote-where-is) | |
1814 | ("k" . boxquote-kill) | |
1815 | ("p" . boxquote-paragraph) | |
1816 | ("q" . boxquote-boxquote) | |
1817 | ("r" . boxquote-region) | |
1818 | ("s" . boxquote-shell-command) | |
1819 | ("t" . boxquote-text) | |
1820 | ("T" . boxquote-title) | |
1821 | ("u" . boxquote-unbox) | |
1822 | ("U" . boxquote-unbox-region) | |
1823 | ("y" . boxquote-yank) | |
1824 | ("M-q" . boxquote-fill-paragraph) | |
1825 | ("M-w" . boxquote-kill-ring-save))) | |
41d290a2 AB |
1826 | |
1827 | (use-package orgalist | |
b57457b2 | 1828 | ;; http://lists.gnu.org/archive/html/emacs-orgmode/2019-04/msg00007.html |
41d290a2 AB |
1829 | :disabled t |
1830 | :after message | |
1831 | :hook (message-mode . orgalist-mode)) | |
1832 | ||
b57457b2 | 1833 | ;; easily type pretty quotes & other typography, like ‘’“”-–—«»‹› |
41d290a2 AB |
1834 | (use-package typo |
1835 | :defer 0.5 | |
1836 | :config | |
1837 | (typo-global-mode 1) | |
d41aeafc AB |
1838 | :hook (((text-mode erc-mode web-mode) . typo-mode) |
1839 | (tex-mode . (lambda ()(typo-mode -1))))) | |
41d290a2 | 1840 | |
b57457b2 | 1841 | ;; highlight TODOs in buffers |
41d290a2 AB |
1842 | (use-package hl-todo |
1843 | :defer 0.5 | |
1844 | :config | |
1845 | (global-hl-todo-mode)) | |
1846 | ||
5b10d879 AB |
1847 | (use-package shrink-path |
1848 | :defer 0.5 | |
1849 | :after eshell | |
1850 | :config | |
92bbb7aa | 1851 | (defvar user-@-host (concat (user-login-name) "@" (system-name) ":")) |
5b10d879 | 1852 | (defun +eshell/prompt () |
92bbb7aa AB |
1853 | (concat (propertize user-@-host 'face 'default) |
1854 | (propertize (abbreviate-file-name default-directory) | |
1855 | 'face 'font-lock-comment-face) | |
1856 | (propertize "\n" 'face 'default) | |
1857 | (if (= (user-uid) 0) | |
1858 | (propertize "#" 'face 'red) | |
1859 | (propertize "$" 'face 'default)) | |
1860 | (propertize " " 'face 'default))) | |
1861 | (setq eshell-prompt-regexp "\\(.*\n\\)*[$#] " | |
5b10d879 | 1862 | eshell-prompt-function #'+eshell/prompt)) |
41d290a2 AB |
1863 | |
1864 | (use-package eshell-up | |
1865 | :after eshell | |
1866 | :commands eshell-up) | |
1867 | ||
1868 | (use-package multi-term | |
cce35aca | 1869 | :disabled |
41d290a2 | 1870 | :defer 0.6 |
fb078e63 AB |
1871 | :bind (("C-c a s m m" . multi-term) |
1872 | ("C-c a s m d" . multi-term-dedicated-toggle) | |
1873 | ("C-c a s m p" . multi-term-prev) | |
1874 | ("C-c a s m n" . multi-term-next) | |
41d290a2 | 1875 | :map term-mode-map |
0af1e91a | 1876 | ("C-c C-j" . term-char-mode)) |
41d290a2 | 1877 | :config |
96c704d7 AB |
1878 | (setq multi-term-program "screen" |
1879 | multi-term-program-switches (concat "-c" | |
1880 | (getenv "XDG_CONFIG_HOME") | |
1881 | "/screen/screenrc") | |
41d290a2 AB |
1882 | ;; TODO: add separate bindings for connecting to existing |
1883 | ;; session vs. always creating a new one | |
1884 | multi-term-dedicated-select-after-open-p t | |
1885 | multi-term-dedicated-window-height 20 | |
1886 | multi-term-dedicated-max-window-height 30 | |
1887 | term-bind-key-alist | |
1888 | '(("C-c C-c" . term-interrupt-subjob) | |
1889 | ("C-c C-e" . term-send-esc) | |
0af1e91a | 1890 | ("C-c C-j" . term-line-mode) |
41d290a2 | 1891 | ("C-k" . kill-line) |
fb078e63 AB |
1892 | ;; ("C-y" . term-paste) |
1893 | ("C-y" . term-send-raw) | |
41d290a2 AB |
1894 | ("M-f" . term-send-forward-word) |
1895 | ("M-b" . term-send-backward-word) | |
1896 | ("M-p" . term-send-up) | |
1897 | ("M-n" . term-send-down) | |
fb078e63 AB |
1898 | ("M-j" . term-send-raw-meta) |
1899 | ("M-y" . term-send-raw-meta) | |
1900 | ("M-/" . term-send-raw-meta) | |
1901 | ("M-0" . term-send-raw-meta) | |
1902 | ("M-1" . term-send-raw-meta) | |
1903 | ("M-2" . term-send-raw-meta) | |
1904 | ("M-3" . term-send-raw-meta) | |
1905 | ("M-4" . term-send-raw-meta) | |
1906 | ("M-5" . term-send-raw-meta) | |
1907 | ("M-6" . term-send-raw-meta) | |
1908 | ("M-7" . term-send-raw-meta) | |
1909 | ("M-8" . term-send-raw-meta) | |
1910 | ("M-9" . term-send-raw-meta) | |
41d290a2 AB |
1911 | ("<C-backspace>" . term-send-backward-kill-word) |
1912 | ("<M-DEL>" . term-send-backward-kill-word) | |
1913 | ("M-d" . term-send-delete-word) | |
1914 | ("M-," . term-send-raw) | |
1915 | ("M-." . comint-dynamic-complete)) | |
1916 | term-unbind-key-alist | |
fb078e63 AB |
1917 | '("C-z" "C-x" "C-c" "C-h" |
1918 | ;; "C-y" | |
1919 | "<ESC>"))) | |
41d290a2 AB |
1920 | |
1921 | (use-package page-break-lines | |
b57457b2 | 1922 | :defer 0.5 |
2f5d8190 AB |
1923 | :custom |
1924 | (page-break-lines-max-width fill-column) | |
41d290a2 AB |
1925 | :config |
1926 | (global-page-break-lines-mode)) | |
1927 | ||
1928 | (use-package expand-region | |
1929 | :bind ("C-=" . er/expand-region)) | |
1930 | ||
1931 | (use-package multiple-cursors | |
1932 | :bind | |
1933 | (("C-S-<mouse-1>" . mc/add-cursor-on-click) | |
dca50cf5 | 1934 | (:prefix-map b/mc-prefix-map |
41d290a2 AB |
1935 | :prefix "C-c m" |
1936 | ("c" . mc/edit-lines) | |
1937 | ("n" . mc/mark-next-like-this) | |
1938 | ("p" . mc/mark-previous-like-this) | |
1060413b | 1939 | ("a" . mc/mark-all-like-this)))) |
41d290a2 | 1940 | |
fa9943dc AB |
1941 | (use-package forge |
1942 | :demand | |
1943 | :after magit) | |
41d290a2 AB |
1944 | |
1945 | (use-package yasnippet | |
1946 | :defer 0.6 | |
1947 | :config | |
1948 | (defconst yas-verbosity-cur yas-verbosity) | |
1949 | (setq yas-verbosity 2) | |
476f6228 | 1950 | (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets" t) |
41d290a2 AB |
1951 | (yas-reload-all) |
1952 | (setq yas-verbosity yas-verbosity-cur) | |
5b185efa AB |
1953 | |
1954 | (defun b/yas--maybe-expand-key-filter (cmd) | |
1955 | (when (and (yas--maybe-expand-key-filter cmd) | |
1956 | (not (bound-and-true-p git-commit-mode))) | |
1957 | cmd)) | |
1958 | (defconst b/yas-maybe-expand | |
1959 | '(menu-item "" yas-expand :filter b/yas--maybe-expand-key-filter)) | |
1960 | (define-key yas-minor-mode-map | |
1961 | (kbd "SPC") b/yas-maybe-expand) | |
1962 | ||
476f6228 | 1963 | (yas-global-mode)) |
41d290a2 | 1964 | |
33273849 AB |
1965 | (use-package debbugs |
1966 | :straight (debbugs | |
1967 | :host github | |
1968 | :repo "emacs-straight/debbugs" | |
1969 | :files (:defaults "Debbugs.wsdl"))) | |
41d290a2 AB |
1970 | |
1971 | (use-package org-ref | |
1972 | :init | |
dca50cf5 | 1973 | (b/setq-every '("~/usr/org/references.bib") |
41d290a2 AB |
1974 | reftex-default-bibliography |
1975 | org-ref-default-bibliography) | |
1976 | (setq | |
1977 | org-ref-bibliography-notes "~/usr/org/notes.org" | |
1978 | org-ref-pdf-directory "~/usr/org/bibtex-pdfs/")) | |
1979 | ||
41d290a2 AB |
1980 | (use-package alert |
1981 | :commands (alert) | |
83a17ce5 | 1982 | :init (setq alert-default-style 'notifications)) |
41d290a2 | 1983 | |
2f5d8190 AB |
1984 | ;; (use-package fill-column-indicator) |
1985 | ||
b46ed2ba | 1986 | (use-package emojify |
b29aa20f | 1987 | :disabled |
b46ed2ba AB |
1988 | :hook (erc-mode . emojify-mode)) |
1989 | ||
33273849 | 1990 | (use-feature window |
ed8c4fa9 | 1991 | :bind |
edb03389 AB |
1992 | (("C-c w e" . (lambda () |
1993 | (interactive) | |
1994 | (split-window-right) | |
1995 | (other-window 1) | |
1996 | (erc-switch-to-buffer))) | |
1997 | ("C-c w s l" . (lambda () | |
1998 | (interactive) | |
1999 | (split-window-right) | |
2000 | (other-window 1))) | |
2001 | ("C-c w s j" . (lambda () | |
2002 | (interactive) | |
2003 | (split-window-below) | |
2004 | (other-window 1))) | |
446cb096 | 2005 | ("C-c w q" . quit-window)) |
92df6c4f AB |
2006 | :custom |
2007 | (split-width-threshold 150)) | |
ed8c4fa9 | 2008 | |
33273849 | 2009 | (use-feature windmove |
ed8c4fa9 AB |
2010 | :defer 0.6 |
2011 | :bind | |
2e81c51a AB |
2012 | (("C-c w h" . windmove-left) |
2013 | ("C-c w j" . windmove-down) | |
2014 | ("C-c w k" . windmove-up) | |
2015 | ("C-c w l" . windmove-right) | |
2016 | ("C-c w H" . windmove-swap-states-left) | |
2017 | ("C-c w J" . windmove-swap-states-down) | |
2018 | ("C-c w K" . windmove-swap-states-up) | |
2019 | ("C-c w L" . windmove-swap-states-right))) | |
ed8c4fa9 | 2020 | |
05068e71 AB |
2021 | (use-package pass |
2022 | :commands pass | |
2023 | :bind ("C-c a p" . pass) | |
2024 | :hook (pass-mode . View-exit)) | |
2025 | ||
b188e798 AB |
2026 | (use-package pdf-tools |
2027 | :defer 0.5 | |
2028 | :bind (:map pdf-view-mode-map | |
0365678c AB |
2029 | ("<C-XF86Back>" . pdf-history-backward) |
2030 | ("<mouse-8>" . pdf-history-backward) | |
2031 | ("<drag-mouse-8>" . pdf-history-backward) | |
2032 | ("<C-XF86Forward>" . pdf-history-forward) | |
2033 | ("<mouse-9>" . pdf-history-forward) | |
2034 | ("<drag-mouse-9>" . pdf-history-forward) | |
4fa43cd8 AB |
2035 | ("M-RET" . image-previous-line) |
2036 | ("C-s" . isearch-forward) | |
2037 | ("s s" . isearch-forward)) | |
822ac360 AB |
2038 | :config (pdf-tools-install nil t) |
2039 | :custom (pdf-view-resize-factor 1.05)) | |
b188e798 | 2040 | |
62a2088e AB |
2041 | (use-package org-pdftools |
2042 | :straight (:host github :repo "fuxialexander/org-pdftools") | |
2043 | :demand | |
2044 | :after org | |
2045 | :config | |
2046 | (with-eval-after-load 'org | |
2047 | (require 'org-pdftools))) | |
2048 | ||
9de75957 AB |
2049 | (use-package biblio) |
2050 | ||
33273849 | 2051 | (use-feature reftex |
9a5ffb33 AB |
2052 | :hook (latex-mode . reftex-mode)) |
2053 | ||
33273849 | 2054 | (use-feature reftex-cite |
9a5ffb33 AB |
2055 | :after reftex |
2056 | :disabled ; enable to disable | |
2057 | ; reftex-cite's default choice | |
2058 | ; of previous word | |
2059 | :config | |
2060 | (defun reftex-get-bibkey-default () | |
2061 | "If the cursor is in a citation macro, return the word before the macro." | |
2062 | (let* ((macro (reftex-what-macro 1))) | |
2063 | (save-excursion | |
2064 | (when (and macro (string-match "cite" (car macro))) | |
2065 | (goto-char (cdr macro))) | |
2066 | (reftex-this-word))))) | |
2067 | ||
d141ce11 AB |
2068 | (use-package minions |
2069 | :demand | |
2070 | :config (minions-mode)) | |
2071 | ||
fa9943dc | 2072 | (use-package dmenu |
fa9943dc | 2073 | :custom |
fa9943dc AB |
2074 | (dmenu-prompt-string "run: ") |
2075 | (dmenu-save-file (b/var "dmenu-items"))) | |
2076 | ||
996bebf6 AB |
2077 | (use-package eosd |
2078 | ;; TODO: fix build by properly building the eosd-pixbuf.c module | |
2079 | ;; e.g. see https://github.com/raxod502/straight.el/issues/386 | |
2080 | :disabled | |
2081 | :straight (:host github :repo "clarete/eosd") | |
2082 | :demand | |
2083 | :after exwm | |
2084 | :config | |
2085 | (eosd-start)) | |
2086 | ||
926d8456 AB |
2087 | (use-package nnreddit |
2088 | :disabled | |
2089 | :demand | |
2090 | :after gnus | |
2091 | :custom | |
2092 | (nnreddit-python-command "python3")) | |
2093 | ||
fcd4c603 AB |
2094 | (use-package hyperbole |
2095 | :disabled | |
2096 | :straight (hyperbole | |
2097 | :host github :repo "rswgnu/hyperbole" | |
2098 | :files ("*.el" ("kotl" "kotl/*.el") | |
2099 | "DEMO" "man/*.info" "man/*.texi"))) | |
2100 | ||
9bacd1c8 AB |
2101 | (use-package oddmuse-curl |
2102 | :straight (:host github :repo "kensanata/oddmuse-curl") | |
2103 | :config | |
2104 | (setq | |
2105 | oddmuse-wikis | |
2106 | (append | |
2107 | '(("EmacsConf" "https://emacsconf.org" utf-8 "question" nil) | |
2108 | ("EmacsConf 2019" "https://emacsconf.org/2019" utf-8 "question" nil)) | |
2109 | oddmuse-wikis)) | |
2110 | :custom | |
2111 | (oddmuse-username "bandali")) | |
2112 | ||
bfbda9c5 AB |
2113 | (use-package debpaste |
2114 | :custom | |
2115 | (debpaste-paste-is-hidden t)) | |
2116 | ||
b57457b2 AB |
2117 | \f |
2118 | ;;; Email (with Gnus) | |
2119 | ||
dca50cf5 | 2120 | (defvar b/maildir (expand-file-name "~/mail/")) |
41d290a2 | 2121 | (with-eval-after-load 'recentf |
dca50cf5 | 2122 | (add-to-list 'recentf-exclude b/maildir)) |
41d290a2 AB |
2123 | |
2124 | (setq | |
dca50cf5 | 2125 | b/gnus-init-file (b/etc "gnus") |
41d290a2 AB |
2126 | mail-user-agent 'gnus-user-agent |
2127 | read-mail-command 'gnus) | |
2128 | ||
33273849 | 2129 | (use-feature gnus |
2e81c51a AB |
2130 | :bind (("s-m" . gnus) |
2131 | ("s-M" . gnus-unplugged) | |
2132 | ("C-c a m" . gnus) | |
2133 | ("C-c a M" . gnus-unplugged)) | |
41d290a2 AB |
2134 | :init |
2135 | (setq | |
2136 | gnus-select-method '(nnnil "") | |
2137 | gnus-secondary-select-methods | |
d4cc5497 | 2138 | '((nnimap "shemshak" |
14bd6398 AB |
2139 | (nnimap-stream plain) |
2140 | (nnimap-address "127.0.0.1") | |
2141 | (nnimap-server-port 143) | |
2142 | (nnimap-authenticator plain) | |
2143 | (nnimap-user "amin@shemshak.local")) | |
2e9074a4 | 2144 | (nnimap "gnu" |
14bd6398 AB |
2145 | (nnimap-stream plain) |
2146 | (nnimap-address "127.0.0.1") | |
2147 | (nnimap-server-port 143) | |
2148 | (nnimap-authenticator plain) | |
2149 | (nnimap-user "bandali@gnu.local") | |
2150 | (nnimap-inbox "INBOX") | |
2151 | (nnimap-split-methods 'nnimap-split-fancy) | |
2152 | (nnimap-split-fancy (| | |
2153 | ;; (: gnus-registry-split-fancy-with-parent) | |
2154 | ;; (: gnus-group-split-fancy "INBOX" t "INBOX") | |
2155 | ;; gnu | |
2156 | (list ".*<\\(.*\\)\\.\\(non\\)?gnu\\.org>.*" "l.\\1") | |
2157 | ;; *.lists.sr.ht, omitting one dot if present | |
2158 | ;; add more \\.?\\([^.]*\\) if needed | |
2159 | (list ".*<~\\(.*\\)/\\([^.]*\\)\\.?\\([^.]*\\)\\.lists.sr.ht>.*" "l.~\\1.\\2\\3") | |
2160 | ;; webmasters | |
2161 | (from "webmasters\\(-comment\\)?@gnu\\.org" "webmasters") | |
2162 | ;; other | |
2163 | (list ".*atreus.freelists.org" "l.atreus") | |
2164 | (list ".*deepspec.lists.cs.princeton.edu" "l.deepspec") | |
2165 | ;; (list ".*haskell-art.we.lurk.org" "l.haskell.art") ;d | |
2166 | (list ".*haskell-cafe.haskell.org" "l.haskell-cafe") | |
2167 | ;; (list ".*notmuch.notmuchmail.org" "l.notmuch") ;u | |
2168 | ;; (list ".*dev.lists.parabola.nu" "l.parabola-dev") ;u | |
2169 | ;; ---------------------------------- | |
2170 | ;; legend: (u)nsubscribed | (d)ead | |
2171 | ;; ---------------------------------- | |
2172 | ;; otherwise, leave mail in INBOX | |
2173 | "INBOX"))) | |
727d14d3 | 2174 | (nnimap "uw" |
41d290a2 AB |
2175 | (nnimap-stream plain) |
2176 | (nnimap-address "127.0.0.1") | |
2177 | (nnimap-server-port 143) | |
2178 | (nnimap-authenticator plain) | |
f0d99991 AB |
2179 | (nnimap-user "abandali@uw.local") |
2180 | (nnimap-inbox "INBOX") | |
2181 | (nnimap-split-methods 'nnimap-split-fancy) | |
2182 | (nnimap-split-fancy (| | |
29e42dc1 | 2183 | ;; (: gnus-registry-split-fancy-with-parent) |
5b8a18a4 | 2184 | ;; se212-f19 |
90dc3a58 AB |
2185 | ("subject" "SE\\s-?212" "course.se212-f19") |
2186 | (from "SE\\s-?212" "course.se212-f19") | |
f0d99991 AB |
2187 | ;; catch-all |
2188 | "INBOX"))) | |
727d14d3 | 2189 | (nnimap "csc" |
41d290a2 AB |
2190 | (nnimap-stream plain) |
2191 | (nnimap-address "127.0.0.1") | |
2192 | (nnimap-server-port 143) | |
2193 | (nnimap-authenticator plain) | |
727d14d3 | 2194 | (nnimap-user "abandali@csc.uw.local"))) |
95ec8c25 | 2195 | gnus-message-archive-group "nnimap+gnu:INBOX" |
41d290a2 | 2196 | gnus-parameters |
859ba2a0 AB |
2197 | '(("l\\.atreus" |
2198 | (to-address . "atreus@freelists.org") | |
2199 | (to-list . "atreus@freelists.org")) | |
2200 | ("l\\.deepspec" | |
41d290a2 | 2201 | (to-address . "deepspec@lists.cs.princeton.edu") |
778202b8 AB |
2202 | (to-list . "deepspec@lists.cs.princeton.edu") |
2203 | (list-identifier . "\\[deepspec\\]")) | |
cb4015f6 | 2204 | ("l\\.emacs-devel" |
74fd778e AB |
2205 | (to-address . "emacs-devel@gnu.org") |
2206 | (to-list . "emacs-devel@gnu.org")) | |
cb4015f6 | 2207 | ("l\\.help-gnu-emacs" |
74fd778e AB |
2208 | (to-address . "help-gnu-emacs@gnu.org") |
2209 | (to-list . "help-gnu-emacs@gnu.org")) | |
cb4015f6 | 2210 | ("l\\.info-gnu-emacs" |
74fd778e AB |
2211 | (to-address . "info-gnu-emacs@gnu.org") |
2212 | (to-list . "info-gnu-emacs@gnu.org")) | |
cb4015f6 | 2213 | ("l\\.emacs-orgmode" |
41d290a2 | 2214 | (to-address . "emacs-orgmode@gnu.org") |
778202b8 AB |
2215 | (to-list . "emacs-orgmode@gnu.org") |
2216 | (list-identifier . "\\[O\\]")) | |
cb4015f6 | 2217 | ("l\\.emacs-tangents" |
40b9eac1 AB |
2218 | (to-address . "emacs-tangents@gnu.org") |
2219 | (to-list . "emacs-tangents@gnu.org")) | |
69e4b016 AB |
2220 | ("l\\.emacsconf-committee" |
2221 | (to-address . "emacsconf-committee@gnu.org") | |
2222 | (to-list . "emacsconf-committee@gnu.org")) | |
cb4015f6 | 2223 | ("l\\.emacsconf-discuss" |
41d290a2 AB |
2224 | (to-address . "emacsconf-discuss@gnu.org") |
2225 | (to-list . "emacsconf-discuss@gnu.org")) | |
cb4015f6 | 2226 | ("l\\.emacsconf-register" |
690a977d AB |
2227 | (to-address . "emacsconf-register@gnu.org") |
2228 | (to-list . "emacsconf-register@gnu.org")) | |
cb4015f6 | 2229 | ("l\\.emacsconf-submit" |
690a977d AB |
2230 | (to-address . "emacsconf-submit@gnu.org") |
2231 | (to-list . "emacsconf-submit@gnu.org")) | |
cb4015f6 | 2232 | ("l\\.fencepost-users" |
41d290a2 | 2233 | (to-address . "fencepost-users@gnu.org") |
778202b8 AB |
2234 | (to-list . "fencepost-users@gnu.org") |
2235 | (list-identifier . "\\[Fencepost-users\\]")) | |
e7a169d1 AB |
2236 | ("l\\.gnewsense-art" |
2237 | (to-address . "gnewsense-art@nongnu.org") | |
2238 | (to-list . "gnewsense-art@nongnu.org") | |
2239 | (list-identifier . "\\[gNewSense-art\\]")) | |
2240 | ("l\\.gnewsense-dev" | |
2241 | (to-address . "gnewsense-dev@nongnu.org") | |
2242 | (to-list . "gnewsense-dev@nongnu.org") | |
2243 | (list-identifier . "\\[Gnewsense-dev\\]")) | |
7f3d862f | 2244 | ("l\\.gnewsense-users" |
e7a169d1 AB |
2245 | (to-address . "gnewsense-users@nongnu.org") |
2246 | (to-list . "gnewsense-users@nongnu.org") | |
2247 | (list-identifier . "\\[gNewSense-users\\]")) | |
cb4015f6 | 2248 | ("l\\.gnunet-developers" |
41d290a2 | 2249 | (to-address . "gnunet-developers@gnu.org") |
778202b8 AB |
2250 | (to-list . "gnunet-developers@gnu.org") |
2251 | (list-identifier . "\\[GNUnet-developers\\]")) | |
cb4015f6 | 2252 | ("l\\.help-gnunet" |
74fd778e AB |
2253 | (to-address . "help-gnunet@gnu.org") |
2254 | (to-list . "help-gnunet@gnu.org") | |
2255 | (list-identifier . "\\[Help-gnunet\\]")) | |
cb4015f6 | 2256 | ("l\\.bug-gnuzilla" |
74fd778e AB |
2257 | (to-address . "bug-gnuzilla@gnu.org") |
2258 | (to-list . "bug-gnuzilla@gnu.org") | |
2259 | (list-identifier . "\\[Bug-gnuzilla\\]")) | |
cb4015f6 | 2260 | ("l\\.gnuzilla-dev" |
74fd778e AB |
2261 | (to-address . "gnuzilla-dev@gnu.org") |
2262 | (to-list . "gnuzilla-dev@gnu.org") | |
2263 | (list-identifier . "\\[Gnuzilla-dev\\]")) | |
cb4015f6 | 2264 | ("l\\.guile-devel" |
41d290a2 AB |
2265 | (to-address . "guile-devel@gnu.org") |
2266 | (to-list . "guile-devel@gnu.org")) | |
cb4015f6 | 2267 | ("l\\.guile-user" |
29e42dc1 AB |
2268 | (to-address . "guile-user@gnu.org") |
2269 | (to-list . "guile-user@gnu.org")) | |
cb4015f6 | 2270 | ("l\\.guix-devel" |
41d290a2 AB |
2271 | (to-address . "guix-devel@gnu.org") |
2272 | (to-list . "guix-devel@gnu.org")) | |
cb4015f6 | 2273 | ("l\\.help-guix" |
837a23a5 AB |
2274 | (to-address . "help-guix@gnu.org") |
2275 | (to-list . "help-guix@gnu.org")) | |
cb4015f6 | 2276 | ("l\\.info-guix" |
74fd778e AB |
2277 | (to-address . "info-guix@gnu.org") |
2278 | (to-list . "info-guix@gnu.org")) | |
cb4015f6 | 2279 | ("l\\.savannah-hackers-public" |
6f25cef1 AB |
2280 | (to-address . "savannah-hackers-public@gnu.org") |
2281 | (to-list . "savannah-hackers-public@gnu.org")) | |
cb4015f6 | 2282 | ("l\\.savannah-users" |
6f25cef1 AB |
2283 | (to-address . "savannah-users@gnu.org") |
2284 | (to-list . "savannah-users@gnu.org")) | |
cb4015f6 | 2285 | ("l\\.www-commits" |
74fd778e AB |
2286 | (to-address . "www-commits@gnu.org") |
2287 | (to-list . "www-commits@gnu.org")) | |
cb4015f6 | 2288 | ("l\\.www-discuss" |
74fd778e AB |
2289 | (to-address . "www-discuss@gnu.org") |
2290 | (to-list . "www-discuss@gnu.org")) | |
cb4015f6 | 2291 | ("l\\.haskell-art" |
41d290a2 | 2292 | (to-address . "haskell-art@we.lurk.org") |
778202b8 AB |
2293 | (to-list . "haskell-art@we.lurk.org") |
2294 | (list-identifier . "\\[haskell-art\\]")) | |
cb4015f6 | 2295 | ("l\\.haskell-cafe" |
41d290a2 | 2296 | (to-address . "haskell-cafe@haskell.org") |
778202b8 AB |
2297 | (to-list . "haskell-cafe@haskell.org") |
2298 | (list-identifier . "\\[Haskell-cafe\\]")) | |
74fd778e | 2299 | ("l\\.notmuch" |
41d290a2 AB |
2300 | (to-address . "notmuch@notmuchmail.org") |
2301 | (to-list . "notmuch@notmuchmail.org")) | |
cb4015f6 | 2302 | ("l\\.parabola-dev" |
41d290a2 | 2303 | (to-address . "dev@lists.parabola.nu") |
778202b8 AB |
2304 | (to-list . "dev@lists.parabola.nu") |
2305 | (list-identifier . "\\[Dev\\]")) | |
74fd778e | 2306 | ("l\\.~bandali\\.public-inbox" |
41d290a2 AB |
2307 | (to-address . "~bandali/public-inbox@lists.sr.ht") |
2308 | (to-list . "~bandali/public-inbox@lists.sr.ht")) | |
7c281dfc AB |
2309 | ("l\\.~sircmpwn\\.free-writers-club" |
2310 | (to-address . "~sircmpwn/free-writers-club@lists.sr.ht") | |
2311 | (to-list . "~sircmpwn/free-writers-club@lists.sr.ht")) | |
cb4015f6 | 2312 | ("l\\.~sircmpwn\\.srht-admins" |
41d290a2 AB |
2313 | (to-address . "~sircmpwn/sr.ht-admins@lists.sr.ht") |
2314 | (to-list . "~sircmpwn/sr.ht-admins@lists.sr.ht")) | |
cb4015f6 | 2315 | ("l\\.~sircmpwn\\.srht-announce" |
41d290a2 AB |
2316 | (to-address . "~sircmpwn/sr.ht-announce@lists.sr.ht") |
2317 | (to-list . "~sircmpwn/sr.ht-announce@lists.sr.ht")) | |
cb4015f6 | 2318 | ("l\\.~sircmpwn\\.srht-dev" |
41d290a2 AB |
2319 | (to-address . "~sircmpwn/sr.ht-dev@lists.sr.ht") |
2320 | (to-list . "~sircmpwn/sr.ht-dev@lists.sr.ht")) | |
cb4015f6 | 2321 | ("l\\.~sircmpwn\\.srht-discuss" |
41d290a2 AB |
2322 | (to-address . "~sircmpwn/sr.ht-discuss@lists.sr.ht") |
2323 | (to-list . "~sircmpwn/sr.ht-discuss@lists.sr.ht")) | |
74fd778e AB |
2324 | ("webmasters" |
2325 | (to-address . "webmasters@gnu.org") | |
2326 | (to-list . "webmasters@gnu.org")) | |
41d290a2 AB |
2327 | ("gnu.*" |
2328 | (gcc-self . t)) | |
2329 | ("gnu\\." | |
262483ba AB |
2330 | (subscribed . t)) |
2331 | ("nnimap\\+uw:.*" | |
2332 | (gcc-self . t))) | |
41d290a2 | 2333 | gnus-large-newsgroup 50 |
dca50cf5 | 2334 | gnus-home-directory (b/var "gnus/") |
41d290a2 AB |
2335 | gnus-directory (concat gnus-home-directory "news/") |
2336 | message-directory (concat gnus-home-directory "mail/") | |
2337 | nndraft-directory (concat gnus-home-directory "drafts/") | |
2338 | gnus-save-newsrc-file nil | |
2339 | gnus-read-newsrc-file nil | |
2340 | gnus-interactive-exit nil | |
2341 | gnus-gcc-mark-as-read t) | |
2342 | :config | |
f02d2b28 AB |
2343 | (when (version< emacs-version "27") |
2344 | (add-to-list | |
2345 | 'nnmail-split-abbrev-alist | |
2346 | '(list . "list-id\\|list-post\\|x-mailing-list\\|x-beenthere\\|x-loop") | |
2347 | t)) | |
2348 | ||
29e42dc1 | 2349 | ;; (gnus-registry-initialize) |
7f88c321 | 2350 | |
41d290a2 AB |
2351 | (with-eval-after-load 'recentf |
2352 | (add-to-list 'recentf-exclude gnus-home-directory))) | |
2353 | ||
33273849 | 2354 | (use-feature gnus-art |
41d290a2 AB |
2355 | :config |
2356 | (setq | |
7e1cad06 | 2357 | gnus-buttonized-mime-types '("multipart/\\(signed\\|encrypted\\)") |
e1f6f6a2 AB |
2358 | gnus-sorted-header-list '("^From:" |
2359 | "^X-RT-Originator" | |
2360 | "^Newsgroups:" | |
2361 | "^Subject:" | |
2362 | "^Date:" | |
2363 | "^Envelope-To:" | |
2364 | "^Followup-To:" | |
2365 | "^Reply-To:" | |
2366 | "^Organization:" | |
2367 | "^Summary:" | |
2368 | "^Abstract:" | |
2369 | "^Keywords:" | |
2370 | "^To:" | |
2371 | "^[BGF]?Cc:" | |
2372 | "^Posted-To:" | |
2373 | "^Mail-Copies-To:" | |
2374 | "^Mail-Followup-To:" | |
2375 | "^Apparently-To:" | |
2376 | "^Resent-From:" | |
2377 | "^User-Agent:" | |
2378 | "^X-detected-operating-system:" | |
2379 | "^Message-ID:" | |
c247fbc8 | 2380 | ;; "^References:" |
e1f6f6a2 AB |
2381 | "^List-Id:" |
2382 | "^Gnus-Warning:") | |
2383 | gnus-visible-headers (mapconcat 'identity | |
2384 | gnus-sorted-header-list | |
2385 | "\\|") | |
41d290a2 AB |
2386 | ;; local-lapsed article dates |
2387 | ;; from https://www.emacswiki.org/emacs/GnusFormatting#toc11 | |
2388 | gnus-article-date-headers '(user-defined) | |
2389 | gnus-article-time-format | |
2390 | (lambda (time) | |
2391 | (let* ((date (format-time-string "%a, %d %b %Y %T %z" time)) | |
2392 | (local (article-make-date-line date 'local)) | |
2393 | (combined-lapsed (article-make-date-line date | |
2394 | 'combined-lapsed)) | |
2395 | (lapsed (progn | |
2396 | (string-match " (.+" combined-lapsed) | |
2397 | (match-string 0 combined-lapsed)))) | |
2398 | (concat local lapsed)))) | |
2399 | (bind-keys | |
2400 | :map gnus-article-mode-map | |
2401 | ("M-L" . org-store-link))) | |
2402 | ||
33273849 | 2403 | (use-feature gnus-sum |
41d290a2 | 2404 | :bind (:map gnus-summary-mode-map |
dca50cf5 | 2405 | :prefix-map b/gnus-summary-prefix-map |
41d290a2 AB |
2406 | :prefix "v" |
2407 | ("r" . gnus-summary-reply) | |
2408 | ("w" . gnus-summary-wide-reply) | |
2409 | ("v" . gnus-summary-show-raw-article)) | |
2410 | :config | |
2411 | (bind-keys | |
2412 | :map gnus-summary-mode-map | |
2413 | ("M-L" . org-store-link)) | |
1bd1c701 AB |
2414 | :hook (gnus-summary-mode . b/no-mouse-autoselect-window) |
2415 | :custom | |
2416 | (gnus-thread-sort-functions '(gnus-thread-sort-by-number | |
2417 | gnus-thread-sort-by-subject | |
2418 | gnus-thread-sort-by-date))) | |
41d290a2 | 2419 | |
33273849 | 2420 | (use-feature gnus-msg |
41d290a2 | 2421 | :config |
dca50cf5 | 2422 | (defvar b/gnu-signature "Amin Bandali |
0567bcba | 2423 | Free Software Activist | GNU Maintainer & Webmaster |
515674c5 | 2424 | GPG: BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103 |
0cff213c | 2425 | https://bandali.eu.org") |
639bdc53 AB |
2426 | (defvar b/shemshak-signature "Amin Bandali |
2427 | https://shemshak.org/~amin") | |
dca50cf5 | 2428 | (defvar b/uw-signature "Amin Bandali, MMath Student |
4d19e255 | 2429 | Cheriton School of Computer Science |
e0e5275d | 2430 | University of Waterloo |
0cff213c | 2431 | https://bandali.eu.org") |
dca50cf5 | 2432 | (defvar b/csc-signature "Amin Bandali |
dc12958b AB |
2433 | Systems Committee |
2434 | Computer Science Club, University of Waterloo | |
2435 | https://csclub.uwaterloo.ca/~abandali") | |
e9abd82c AB |
2436 | (setq gnus-message-replysign t |
2437 | gnus-posting-styles | |
41d290a2 | 2438 | '((".*" |
95ec8c25 | 2439 | (address "bandali@gnu.org") |
e1f6f6a2 | 2440 | (signature b/gnu-signature)) |
639bdc53 AB |
2441 | ("nnimap\\+gnu:l\\..*" |
2442 | (signature nil)) | |
2443 | ((header "subject" "ThankCRM") | |
2444 | (to "webmasters-comment@gnu.org") | |
2445 | (body "") | |
2446 | (eval (setq b/message-cite-say-hi nil))) | |
95ec8c25 | 2447 | ("nnimap\\+shemshak:.*" |
4ed3a945 | 2448 | (address "amin@shemshak.org") |
41d290a2 | 2449 | (body "\nBest,\n") |
639bdc53 | 2450 | (signature b/shemshak-signature) |
95ec8c25 | 2451 | (gcc "nnimap+shemshak:Sent") |
dca50cf5 | 2452 | (eval (setq b/message-cite-say-hi t))) |
63c1969d | 2453 | ("nnimap\\+uw:.*" |
e7125caf | 2454 | (address "bandali@uwaterloo.ca") |
639bdc53 | 2455 | (body "\nBest,\n") |
dca50cf5 | 2456 | (signature b/uw-signature)) |
262483ba | 2457 | ("nnimap\\+uw:INBOX" |
63c1969d AB |
2458 | (gcc "\"nnimap+uw:Sent Items\"")) |
2459 | ("nnimap\\+csc:.*" | |
e93437ba | 2460 | (address "bandali@csclub.uwaterloo.ca") |
dca50cf5 | 2461 | (signature b/csc-signature) |
0567bcba | 2462 | (gcc "nnimap+csc:Sent")))) |
e9abd82c AB |
2463 | ;; :hook (gnus-message-setup . mml-secure-message-sign) |
2464 | ) | |
41d290a2 | 2465 | |
33273849 | 2466 | (use-feature gnus-topic |
41d290a2 AB |
2467 | :hook (gnus-group-mode . gnus-topic-mode) |
2468 | :config (setq gnus-topic-line-format "%i[ %A: %(%{%n%}%) ]%v\n")) | |
2469 | ||
33273849 | 2470 | (use-feature gnus-agent |
41d290a2 AB |
2471 | :config |
2472 | (setq gnus-agent-synchronize-flags 'ask) | |
2473 | :hook (gnus-group-mode . gnus-agent-mode)) | |
2474 | ||
33273849 | 2475 | (use-feature gnus-group |
41d290a2 AB |
2476 | :config |
2477 | (setq gnus-permanently-visible-groups "\\(:INBOX$\\|:gnu$\\)")) | |
2478 | ||
082360a8 AB |
2479 | (comment |
2480 | ;; problematic with ebdb's popup, *EBDB-Gnus* | |
33273849 | 2481 | (use-feature gnus-win |
082360a8 AB |
2482 | :config |
2483 | (setq gnus-use-full-window nil))) | |
f485f78e | 2484 | |
33273849 | 2485 | (use-feature gnus-dired |
348511ef AB |
2486 | :commands gnus-dired-mode |
2487 | :init | |
2488 | (add-hook 'dired-mode-hook 'gnus-dired-mode)) | |
2489 | ||
6ca3a7b1 AB |
2490 | (comment |
2491 | (use-feature gnus-utils | |
2492 | :custom | |
2493 | (gnus-completing-read-function 'gnus-ido-completing-read))) | |
6eb104ff | 2494 | |
33273849 | 2495 | (use-feature mm-decode |
41d290a2 | 2496 | :config |
7e1cad06 AB |
2497 | (setq mm-discouraged-alternatives '("text/html" "text/richtext") |
2498 | mm-decrypt-option 'known | |
2499 | mm-verify-option 'known)) | |
41d290a2 | 2500 | |
1fe01703 AB |
2501 | (use-feature mm-uu |
2502 | :custom | |
2503 | (mm-uu-diff-groups-regexp | |
2504 | "\\(gmane\\|gnu\\|l\\)\\..*\\(diff\\|commit\\|cvs\\|bug\\|dev\\)")) | |
2505 | ||
33273849 | 2506 | (use-feature sendmail |
41d290a2 | 2507 | :config |
8f8d4c32 | 2508 | (setq sendmail-program (executable-find "msmtp") |
41d290a2 AB |
2509 | ;; message-sendmail-extra-arguments '("-v" "-d") |
2510 | mail-specify-envelope-from t | |
2511 | mail-envelope-from 'header)) | |
2512 | ||
33273849 | 2513 | (use-feature message |
bc2f85e1 | 2514 | :bind (:map message-mode-map ("<C-return>" . b/insert-asterism)) |
41d290a2 AB |
2515 | :config |
2516 | ;; redefine for a simplified In-Reply-To header | |
2517 | ;; (see https://todo.sr.ht/~sircmpwn/lists.sr.ht/67) | |
2518 | (defun message-make-in-reply-to () | |
2519 | "Return the In-Reply-To header for this message." | |
2520 | (when message-reply-headers | |
2521 | (let ((from (mail-header-from message-reply-headers)) | |
63102057 | 2522 | (msg-id (mail-header-id message-reply-headers))) |
41d290a2 AB |
2523 | (when from |
2524 | msg-id)))) | |
2525 | ||
dca50cf5 | 2526 | (defconst b/message-cite-style-format "On %Y-%m-%d %l:%M %p, %N wrote:") |
41d290a2 AB |
2527 | (defconst message-cite-style-bandali |
2528 | '((message-cite-function 'message-cite-original) | |
2529 | (message-citation-line-function 'message-insert-formatted-citation-line) | |
2530 | (message-cite-reply-position 'traditional) | |
2531 | (message-yank-prefix "> ") | |
2532 | (message-yank-cited-prefix ">") | |
2533 | (message-yank-empty-prefix ">") | |
2534 | (message-citation-line-format | |
dca50cf5 AB |
2535 | (if b/message-cite-say-hi |
2536 | (concat "Hi %F,\n\n" b/message-cite-style-format) | |
2537 | b/message-cite-style-format))) | |
41d290a2 AB |
2538 | "Citation style based on Mozilla Thunderbird's. Use with message-cite-style.") |
2539 | (setq ;; message-cite-style 'message-cite-style-bandali | |
2540 | message-kill-buffer-on-exit t | |
2541 | message-send-mail-function 'message-send-mail-with-sendmail | |
2542 | message-sendmail-envelope-from 'header | |
2543 | message-subscribed-address-functions | |
2544 | '(gnus-find-subscribed-addresses) | |
2545 | message-dont-reply-to-names | |
e93437ba | 2546 | "\\(\\(\\(amin\\|mab\\)@shemshak\\.org\\)\\|\\(.*@aminb\\.org\\)\\|\\(\\(bandali\\|mab\\|aminb?\\)@gnu\\.org\\)\\|\\(a?bandali@\\(csclub\\.\\)?uwaterloo\\.ca\\)\\)") |
6eb104ff | 2547 | ;; (require 'company-ebdb) |
41d290a2 AB |
2548 | :hook (;; (message-setup . mml-secure-message-sign-pgpmime) |
2549 | (message-mode . flyspell-mode) | |
2550 | (message-mode . (lambda () | |
2551 | ;; (setq fill-column 65 | |
2552 | ;; message-fill-column 65) | |
2553 | (make-local-variable 'company-idle-delay) | |
2554 | (setq company-idle-delay 0.2)))) | |
2555 | ;; :custom-face | |
2556 | ;; (message-header-subject ((t (:foreground "#111" :weight semi-bold)))) | |
2557 | ;; (message-header-to ((t (:foreground "#111" :weight normal)))) | |
2558 | ;; (message-header-cc ((t (:foreground "#333" :weight normal)))) | |
db1cc59c AB |
2559 | :custom |
2560 | (message-elide-ellipsis "[...]\n")) | |
41d290a2 | 2561 | |
d141ce11 | 2562 | (use-feature mml) |
54209e74 | 2563 | |
33273849 | 2564 | (use-feature mml-sec |
54209e74 AB |
2565 | :custom |
2566 | (mml-secure-openpgp-encrypt-to-self t) | |
2567 | (mml-secure-openpgp-sign-with-sender t)) | |
41d290a2 | 2568 | |
33273849 | 2569 | (use-feature footnote |
41d290a2 AB |
2570 | :after message |
2571 | ;; :config | |
2572 | ;; (setq footnote-start-tag "" | |
2573 | ;; footnote-end-tag "" | |
2574 | ;; footnote-style 'unicode) | |
2575 | :bind | |
2576 | (:map message-mode-map | |
dca50cf5 | 2577 | :prefix-map b/footnote-prefix-map |
7cc51891 | 2578 | :prefix "C-c f n" |
41d290a2 AB |
2579 | ("a" . footnote-add-footnote) |
2580 | ("b" . footnote-back-to-message) | |
2581 | ("c" . footnote-cycle-style) | |
2582 | ("d" . footnote-delete-footnote) | |
2583 | ("g" . footnote-goto-footnote) | |
2584 | ("r" . footnote-renumber-footnotes) | |
2585 | ("s" . footnote-set-style))) | |
2586 | ||
5b10d879 | 2587 | (use-package ebdb |
24a42bb2 | 2588 | :demand |
5b10d879 AB |
2589 | :after gnus |
2590 | :bind (:map gnus-group-mode-map ("e" . ebdb)) | |
2591 | :config | |
2592 | (setq ebdb-sources (b/var "ebdb")) | |
2593 | (with-eval-after-load 'swiper | |
2594 | (add-to-list 'swiper-font-lock-exclude 'ebdb-mode t))) | |
41d290a2 | 2595 | |
33273849 | 2596 | (use-feature ebdb-com |
5b10d879 | 2597 | :after ebdb) |
41d290a2 | 2598 | |
6eb104ff AB |
2599 | (use-feature ebdb-complete |
2600 | :after ebdb | |
5b10d879 | 2601 | :config |
6eb104ff AB |
2602 | ;; (setq ebdb-complete-mail 'capf) |
2603 | (ebdb-complete-enable)) | |
2604 | ||
2605 | (use-feature ebdb-message | |
2606 | :demand | |
2607 | :after ebdb) | |
2608 | ||
2609 | ;; (use-package company-ebdb | |
2610 | ;; :config | |
2611 | ;; (defun company-ebdb--post-complete (_) nil)) | |
41d290a2 | 2612 | |
33273849 | 2613 | (use-feature ebdb-gnus |
5b10d879 AB |
2614 | :after ebdb |
2615 | :custom | |
d24199d0 | 2616 | (ebdb-gnus-window-size 0.3)) |
5b10d879 | 2617 | |
33273849 | 2618 | (use-feature ebdb-mua |
24a42bb2 | 2619 | :demand |
5b10d879 | 2620 | :after ebdb |
95f304a8 | 2621 | :custom (ebdb-mua-pop-up t)) |
41d290a2 | 2622 | |
5b10d879 AB |
2623 | ;; (use-package ebdb-message |
2624 | ;; :after ebdb) | |
41d290a2 | 2625 | |
5b10d879 AB |
2626 | ;; (use-package ebdb-vcard |
2627 | ;; :after ebdb) | |
41d290a2 | 2628 | |
5b10d879 | 2629 | (use-package message-x) |
41d290a2 | 2630 | |
b57457b2 AB |
2631 | (comment |
2632 | (use-package message-x | |
2633 | :custom | |
2634 | (message-x-completion-alist | |
2635 | (quote | |
2636 | (("\\([rR]esent-\\|[rR]eply-\\)?[tT]o:\\|[bB]?[cC][cC]:" . gnus-harvest-find-address) | |
2637 | ((if | |
2638 | (boundp | |
2639 | (quote message-newgroups-header-regexp)) | |
2640 | message-newgroups-header-regexp message-newsgroups-header-regexp) | |
2641 | . message-expand-group)))))) | |
2642 | ||
2643 | (comment | |
2644 | (use-package gnus-harvest | |
2645 | :commands gnus-harvest-install | |
2646 | :demand t | |
2647 | :config | |
2648 | (if (featurep 'message-x) | |
2649 | (gnus-harvest-install 'message-x) | |
2650 | (gnus-harvest-install)))) | |
2651 | ||
a5cf4300 AB |
2652 | (use-feature gnus-article-treat-patch |
2653 | :disabled | |
2654 | :demand | |
2655 | :load-path "lisp/" | |
2656 | :config | |
35684c66 AB |
2657 | ;; note: be sure to customize faces with `:foreground "white"' when |
2658 | ;; using a theme with a white/light background :) | |
a5cf4300 AB |
2659 | (setq ft/gnus-article-patch-conditions |
2660 | '("^@@ -[0-9]+,[0-9]+ \\+[0-9]+,[0-9]+ @@"))) | |
2661 | ||
b57457b2 | 2662 | \f |
e3e5e846 | 2663 | ;;; IRC (with ERC and ZNC) |
b57457b2 | 2664 | |
33273849 | 2665 | (use-feature erc |
e38333d9 | 2666 | :bind (("C-c b b" . erc-switch-to-buffer) |
96840c88 AB |
2667 | :map erc-mode-map |
2668 | ("M-a" . erc-track-switch-buffer)) | |
2669 | :custom | |
96840c88 AB |
2670 | (erc-join-buffer 'bury) |
2671 | (erc-lurker-hide-list '("JOIN" "PART" "QUIT")) | |
2672 | (erc-nick "bandali") | |
4d5a11b3 | 2673 | (erc-prompt "erc>") |
96840c88 AB |
2674 | (erc-rename-buffers t) |
2675 | (erc-server-reconnect-attempts 5) | |
2676 | (erc-server-reconnect-timeout 3) | |
96840c88 | 2677 | :config |
96840c88 AB |
2678 | (defun erc-cmd-OPME () |
2679 | "Request chanserv to op me." | |
2680 | (erc-message "PRIVMSG" | |
2681 | (format "chanserv op %s %s" | |
2682 | (erc-default-target) | |
2683 | (erc-current-nick)) nil)) | |
2684 | (defun erc-cmd-DEOPME () | |
2685 | "Deop myself from current channel." | |
2686 | (erc-cmd-DEOP (format "%s" (erc-current-nick)))) | |
2687 | (add-to-list 'erc-modules 'keep-place) | |
2688 | (add-to-list 'erc-modules 'notifications) | |
2689 | (add-to-list 'erc-modules 'spelling) | |
5b10d879 | 2690 | (add-to-list 'erc-modules 'scrolltoplace) |
cb058d21 | 2691 | (erc-update-modules)) |
96840c88 | 2692 | |
33273849 | 2693 | (use-feature erc-fill |
e3e5e846 AB |
2694 | :after erc |
2695 | :custom | |
92df6c4f | 2696 | (erc-fill-column 77) |
e3e5e846 AB |
2697 | (erc-fill-function 'erc-fill-static) |
2698 | (erc-fill-static-center 18)) | |
2699 | ||
33273849 | 2700 | (use-feature erc-pcomplete |
e3e5e846 AB |
2701 | :after erc |
2702 | :custom | |
0562e97e | 2703 | (erc-pcomplete-nick-postfix ", ")) |
e3e5e846 | 2704 | |
33273849 | 2705 | (use-feature erc-track |
e3e5e846 | 2706 | :after erc |
2e81c51a AB |
2707 | :bind (("C-c a e t d" . erc-track-disable) |
2708 | ("C-c a e t e" . erc-track-enable)) | |
e3e5e846 | 2709 | :custom |
2384d161 | 2710 | (erc-track-enable-keybindings nil) |
e3e5e846 AB |
2711 | (erc-track-exclude-types '("JOIN" "MODE" "NICK" "PART" "QUIT" |
2712 | "324" "329" "332" "333" "353" "477")) | |
7ac2eb50 | 2713 | (erc-track-position-in-mode-line t) |
e3e5e846 AB |
2714 | (erc-track-priority-faces-only 'all) |
2715 | (erc-track-shorten-function nil)) | |
2716 | ||
96840c88 AB |
2717 | (use-package erc-hl-nicks |
2718 | :after erc) | |
2719 | ||
5b10d879 AB |
2720 | (use-package erc-scrolltoplace |
2721 | :after erc) | |
96840c88 | 2722 | |
41d290a2 | 2723 | (use-package znc |
33273849 | 2724 | :straight (:host nil :repo "https://git.shemshak.org/amin/znc.el") |
41d290a2 AB |
2725 | :bind (("C-c a e e" . znc-erc) |
2726 | ("C-c a e a" . znc-all)) | |
2727 | :config | |
2728 | (let ((pwd (let ((auth (auth-source-search :host "znca"))) | |
2729 | (cond | |
2730 | ((null auth) (error "Couldn't find znca's authinfo")) | |
2731 | (t (funcall (plist-get (car auth) :secret))))))) | |
2732 | (setq znc-servers | |
cad07800 | 2733 | `(("znc.shemshak.org" 1337 t |
4ed3a945 | 2734 | ((freenode "amin/freenode" ,pwd))) |
cad07800 | 2735 | ("znc.shemshak.org" 1337 t |
4ed3a945 | 2736 | ((moznet "amin/moznet" ,pwd))) |
cad07800 | 2737 | ("znc.shemshak.org" 1337 t |
4ed3a945 | 2738 | ((oftc "amin/oftc" ,pwd))))))) |
41d290a2 | 2739 | |
b57457b2 AB |
2740 | \f |
2741 | ;;; Post initialization | |
2742 | ||
41d290a2 AB |
2743 | (message "Loading %s...done (%.3fs)" user-init-file |
2744 | (float-time (time-subtract (current-time) | |
dca50cf5 | 2745 | b/before-user-init-time))) |
41d290a2 AB |
2746 | |
2747 | ;;; init.el ends here |