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 | |
dca50cf5 AB |
21 | ;; programmer, and free software activist. Used to use straight.el |
22 | ;; for purely functional and fully reproducible package management. | |
23 | ;; Now I just use Guix. | |
b57457b2 AB |
24 | |
25 | ;; Over the years, I've taken inspiration from configurations of many | |
26 | ;; great people. Some that I can remember off the top of my head are: | |
27 | ;; | |
28 | ;; - https://github.com/dieggsy/dotfiles | |
29 | ;; - https://github.com/dakra/dmacs | |
30 | ;; - http://pages.sachachua.com/.emacs.d/Sacha.html | |
31 | ;; - https://github.com/dakrone/eos | |
32 | ;; - http://doc.rix.si/cce/cce.html | |
33 | ;; - https://github.com/jwiegley/dot-emacs | |
34 | ;; - https://github.com/wasamasa/dotemacs | |
35 | ;; - https://github.com/hlissner/doom-emacs | |
41d290a2 | 36 | |
49e9503b AB |
37 | ;;; Code: |
38 | ||
b57457b2 AB |
39 | ;;; Emacs initialization |
40 | ||
dca50cf5 | 41 | (defvar b/before-user-init-time (current-time) |
41d290a2 AB |
42 | "Value of `current-time' when Emacs begins loading `user-init-file'.") |
43 | (message "Loading Emacs...done (%.3fs)" | |
dca50cf5 | 44 | (float-time (time-subtract b/before-user-init-time |
41d290a2 AB |
45 | before-init-time))) |
46 | ||
b57457b2 AB |
47 | ;; temporarily increase `gc-cons-threshhold' and `gc-cons-percentage' |
48 | ;; during startup to reduce garbage collection frequency. clearing | |
49 | ;; `file-name-handler-alist' seems to help reduce startup time too. | |
dca50cf5 AB |
50 | (defvar b/gc-cons-threshold gc-cons-threshold) |
51 | (defvar b/gc-cons-percentage gc-cons-percentage) | |
52 | (defvar b/file-name-handler-alist file-name-handler-alist) | |
41d290a2 AB |
53 | (setq gc-cons-threshold (* 400 1024 1024) ; 400 MiB |
54 | gc-cons-percentage 0.6 | |
55 | file-name-handler-alist nil | |
56 | ;; sidesteps a bug when profiling with esup | |
57 | esup-child-profile-require-level 0) | |
58 | ||
b57457b2 | 59 | ;; set them back to their defaults once we're done initializing |
dca50cf5 AB |
60 | (defun b/post-init () |
61 | (setq gc-cons-threshold b/gc-cons-threshold | |
62 | gc-cons-percentage b/gc-cons-percentage | |
63 | file-name-handler-alist b/file-name-handler-alist)) | |
64 | (add-hook 'after-init-hook #'b/post-init) | |
41d290a2 | 65 | |
b57457b2 | 66 | ;; increase number of lines kept in *Messages* log |
41d290a2 AB |
67 | (setq message-log-max 20000) |
68 | ||
b57457b2 AB |
69 | ;; optionally, uncomment to supress some byte-compiler warnings |
70 | ;; (see C-h v byte-compile-warnings RET for more info) | |
41d290a2 AB |
71 | ;; (setq byte-compile-warnings |
72 | ;; '(not free-vars unresolved noruntime lexical make-local)) | |
73 | ||
b57457b2 AB |
74 | \f |
75 | ;;; whoami | |
76 | ||
41d290a2 | 77 | (setq user-full-name "Amin Bandali" |
dca50cf5 | 78 | user-mail-address "bandali@gnu.org") |
41d290a2 | 79 | |
b57457b2 AB |
80 | \f |
81 | ;;; comment macro | |
82 | ||
83 | ;; useful for commenting out multiple sexps at a time | |
84 | (defmacro comment (&rest _) | |
85 | "Comment out one or more s-expressions." | |
86 | (declare (indent defun)) | |
87 | nil) | |
88 | ||
89 | \f | |
dca50cf5 | 90 | ;;; use-package |
41d290a2 AB |
91 | (if nil ; set to t when need to debug init |
92 | (progn | |
93 | (setq use-package-verbose t | |
94 | use-package-expand-minimally nil | |
95 | use-package-compute-statistics t | |
96 | debug-on-error t) | |
97 | (require 'use-package)) | |
98 | (setq use-package-verbose nil | |
99 | use-package-expand-minimally t)) | |
100 | ||
101 | (setq use-package-always-defer t) | |
102 | (require 'bind-key) | |
103 | ||
54209e74 AB |
104 | (use-package delight) |
105 | ||
b57457b2 AB |
106 | \f |
107 | ;;; Initial setup | |
108 | ||
109 | ;; keep ~/.emacs.d clean | |
dca50cf5 AB |
110 | (defvar b/etc-dir |
111 | (expand-file-name | |
112 | (convert-standard-filename "etc/") user-emacs-directory) | |
113 | "The directory where packages place their configuration files.") | |
114 | ||
115 | (defvar b/var-dir | |
116 | (expand-file-name | |
117 | (convert-standard-filename "var/") user-emacs-directory) | |
118 | "The directory where packages place their persistent data files.") | |
119 | ||
120 | (defun b/etc (file) | |
121 | "Expand filename FILE relative to `b/etc-dir'." | |
122 | (expand-file-name (convert-standard-filename file) b/etc-dir)) | |
123 | ||
124 | (defun b/var (file) | |
125 | "Expand filename FILE relative to `b/var-dir'." | |
126 | (expand-file-name (convert-standard-filename file) b/var-dir)) | |
127 | ||
65643ac8 AB |
128 | (setq |
129 | auto-save-list-file-prefix (b/var "auto-save/sessions/") | |
130 | nsm-settings-file (b/var "nsm-settings.el")) | |
41d290a2 | 131 | |
b57457b2 | 132 | ;; separate custom file (don't want it mixing with init.el) |
dca50cf5 | 133 | (use-package custom |
41d290a2 AB |
134 | :no-require t |
135 | :config | |
dca50cf5 | 136 | (setq custom-file (b/etc "custom.el")) |
41d290a2 AB |
137 | (when (file-exists-p custom-file) |
138 | (load custom-file)) | |
b57457b2 | 139 | ;; while at it, treat themes as safe |
41d290a2 AB |
140 | (setf custom-safe-themes t)) |
141 | ||
b57457b2 | 142 | ;; load the secrets file if it exists, otherwise show a warning |
dca50cf5 AB |
143 | (comment |
144 | (with-demoted-errors | |
145 | (load (b/etc "secrets")))) | |
41d290a2 | 146 | |
b57457b2 | 147 | ;; better $PATH (and other environment variable) handling |
41d290a2 AB |
148 | (use-package exec-path-from-shell |
149 | :defer 0.4 | |
150 | :init | |
151 | (setq exec-path-from-shell-arguments nil | |
152 | exec-path-from-shell-check-startup-files nil) | |
153 | :config | |
154 | (exec-path-from-shell-initialize) | |
155 | ;; while we're at it, let's fix access to our running ssh-agent | |
156 | (exec-path-from-shell-copy-env "SSH_AGENT_PID") | |
157 | (exec-path-from-shell-copy-env "SSH_AUTH_SOCK")) | |
158 | ||
b57457b2 AB |
159 | ;; only one custom theme at a time |
160 | (comment | |
161 | (defadvice load-theme (before clear-previous-themes activate) | |
162 | "Clear existing theme settings instead of layering them" | |
163 | (mapc #'disable-theme custom-enabled-themes))) | |
164 | ||
165 | ;; start up emacs server. see | |
166 | ;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html#Emacs-Server | |
dca50cf5 | 167 | (use-package server |
41d290a2 AB |
168 | :defer 0.4 |
169 | :config (or (server-running-p) (server-mode))) | |
170 | ||
b57457b2 AB |
171 | ;; unicode support |
172 | (comment | |
173 | (dolist (ft (fontset-list)) | |
174 | (set-fontset-font | |
175 | ft | |
176 | 'unicode | |
177 | (font-spec :name "Source Code Pro" :size 14)) | |
178 | (set-fontset-font | |
179 | ft | |
180 | 'unicode | |
181 | (font-spec :name "DejaVu Sans Mono") | |
182 | nil | |
183 | 'append) | |
184 | ;; (set-fontset-font | |
185 | ;; ft | |
186 | ;; 'unicode | |
187 | ;; (font-spec | |
188 | ;; :name "Symbola monospacified for DejaVu Sans Mono") | |
189 | ;; nil | |
190 | ;; 'append) | |
191 | ;; (set-fontset-font | |
192 | ;; ft | |
193 | ;; #x2115 ; ℕ | |
194 | ;; (font-spec :name "DejaVu Sans Mono") | |
195 | ;; nil | |
196 | ;; 'append) | |
197 | (set-fontset-font | |
198 | ft | |
199 | (cons ?Α ?ω) | |
200 | (font-spec :name "DejaVu Sans Mono" :size 14) | |
201 | nil | |
202 | 'prepend))) | |
203 | ||
204 | ;; gentler font resizing | |
41d290a2 AB |
205 | (setq text-scale-mode-step 1.05) |
206 | ||
b57457b2 | 207 | ;; focus follows mouse |
41d290a2 AB |
208 | (setq mouse-autoselect-window t) |
209 | ||
dca50cf5 | 210 | (defun b/no-mouse-autoselect-window () |
b57457b2 AB |
211 | "Conveniently disable `focus-follows-mouse'. |
212 | For disabling the behaviour for certain buffers and/or modes." | |
41d290a2 AB |
213 | (make-local-variable 'mouse-autoselect-window) |
214 | (setq mouse-autoselect-window nil)) | |
215 | ||
b57457b2 | 216 | ;; better scrolling |
41d290a2 AB |
217 | (setq ;; scroll-margin 1 |
218 | ;; scroll-conservatively 10000 | |
219 | scroll-step 1 | |
220 | scroll-conservatively 10 | |
221 | scroll-preserve-screen-position 1) | |
222 | ||
dca50cf5 | 223 | (use-package mwheel |
41d290a2 AB |
224 | :defer 0.4 |
225 | :config | |
226 | (setq mouse-wheel-scroll-amount '(1 ((shift) . 1)) ; one line at a time | |
227 | mouse-wheel-progressive-speed nil ; don't accelerate scrolling | |
228 | mouse-wheel-follow-mouse t)) ; scroll window under mouse | |
229 | ||
dca50cf5 | 230 | (use-package pixel-scroll |
41d290a2 AB |
231 | :defer 0.4 |
232 | :config (pixel-scroll-mode 1)) | |
233 | ||
b57457b2 | 234 | ;; ask for GPG passphrase in minibuffer |
dca50cf5 AB |
235 | (use-package epa |
236 | :custom | |
237 | ; this will fail if gpg>=2.1 is not available | |
238 | (epa-pinentry-mode 'loopback)) | |
239 | ||
240 | (use-package epg-config | |
9fc30d4c AB |
241 | :defer 0.4 |
242 | :custom | |
243 | ((epg-gpg-program (executable-find "gpg")) | |
244 | (epg-pinentry-mode 'loopback))) | |
dca50cf5 AB |
245 | |
246 | (use-package epg | |
9fc30d4c | 247 | :after epg-config) |
dca50cf5 | 248 | |
9fc30d4c AB |
249 | (use-package pinentry |
250 | :demand | |
dca50cf5 | 251 | :after (epa epg server) |
9fc30d4c AB |
252 | :config |
253 | (setq pinentry--socket-dir server-socket-dir) | |
254 | (pinentry-start)) | |
41d290a2 | 255 | |
b57457b2 | 256 | ;; useful libraries |
41d290a2 AB |
257 | (require 'cl-lib) |
258 | (require 'subr-x) | |
259 | ||
b57457b2 AB |
260 | \f |
261 | ;;; Useful utilities | |
262 | ||
dca50cf5 | 263 | (defmacro b/setq-every (value &rest vars) |
41d290a2 AB |
264 | "Set all the variables from VARS to value VALUE." |
265 | (declare (indent defun) (debug t)) | |
266 | `(progn ,@(mapcar (lambda (x) (list 'setq x value)) vars))) | |
267 | ||
dca50cf5 | 268 | (defun b/start-process (program &rest args) |
41d290a2 AB |
269 | "Same as `start-process', but doesn't bother about name and buffer." |
270 | (let ((process-name (concat program "_process")) | |
271 | (buffer-name (generate-new-buffer-name | |
272 | (concat program "_output")))) | |
273 | (apply #'start-process | |
274 | process-name buffer-name program args))) | |
275 | ||
dca50cf5 | 276 | (defun b/dired-start-process (program &optional args) |
41d290a2 AB |
277 | "Open current file with a PROGRAM." |
278 | ;; Shell command looks like this: "program [ARGS]... FILE" (ARGS can | |
279 | ;; be nil, so remove it). | |
dca50cf5 | 280 | (apply #'b/start-process |
41d290a2 AB |
281 | program |
282 | (remove nil (list args (dired-get-file-for-visit))))) | |
283 | ||
dca50cf5 | 284 | (defun b/add-elisp-section () |
b57457b2 AB |
285 | (interactive) |
286 | (insert "\n") | |
287 | (previous-line) | |
288 | (insert "\n\f\n;;; ")) | |
289 | ||
290 | \f | |
291 | ;;; Defaults | |
292 | ||
293 | ;; time and battery in mode-line | |
294 | (comment | |
295 | (use-package time | |
296 | :init | |
297 | (setq display-time-default-load-average nil) | |
298 | :config | |
299 | (display-time-mode)) | |
300 | ||
301 | (use-package battery | |
302 | :config | |
303 | (display-battery-mode))) | |
304 | ||
305 | ;; smaller fringe | |
41d290a2 AB |
306 | ;; (fringe-mode '(3 . 1)) |
307 | (fringe-mode nil) | |
308 | ||
b57457b2 | 309 | ;; disable disabled commands |
41d290a2 AB |
310 | (setq disabled-command-function nil) |
311 | ||
b57457b2 AB |
312 | ;; Save what I copy into clipboard from other applications into Emacs' |
313 | ;; kill-ring, which would allow me to still be able to easily access | |
314 | ;; it in case I kill (cut or copy) something else inside Emacs before | |
315 | ;; yanking (pasting) what I'd originally intended to. | |
41d290a2 AB |
316 | (setq save-interprogram-paste-before-kill t) |
317 | ||
b57457b2 | 318 | ;; minibuffer |
41d290a2 AB |
319 | (setq enable-recursive-minibuffers t |
320 | resize-mini-windows t) | |
321 | ||
b57457b2 | 322 | ;; lazy-person-friendly yes/no prompts |
41d290a2 AB |
323 | (defalias 'yes-or-no-p #'y-or-n-p) |
324 | ||
b57457b2 | 325 | ;; i want *scratch* as my startup buffer |
41d290a2 AB |
326 | (setq initial-buffer-choice t) |
327 | ||
b57457b2 | 328 | ;; i don't need the default hint |
41d290a2 AB |
329 | (setq initial-scratch-message nil) |
330 | ||
b57457b2 | 331 | ;; use customizable text-mode as major mode for *scratch* |
41d290a2 AB |
332 | (setq initial-major-mode 'text-mode) |
333 | ||
b57457b2 | 334 | ;; inhibit buffer list when more than 2 files are loaded |
41d290a2 AB |
335 | (setq inhibit-startup-buffer-menu t) |
336 | ||
b57457b2 | 337 | ;; don't need to see the startup screen or the echo area message |
41d290a2 AB |
338 | (advice-add #'display-startup-echo-area-message :override #'ignore) |
339 | (setq inhibit-startup-screen t | |
340 | inhibit-startup-echo-area-message user-login-name) | |
341 | ||
b57457b2 | 342 | ;; more useful frame titles |
41d290a2 AB |
343 | (setq frame-title-format |
344 | '("" invocation-name " - " | |
345 | (:eval (if (buffer-file-name) | |
346 | (abbreviate-file-name (buffer-file-name)) | |
347 | "%b")))) | |
348 | ||
b57457b2 | 349 | ;; backups (C-h v make-backup-files RET) |
41d290a2 | 350 | (setq backup-by-copying t |
dca50cf5 | 351 | backup-directory-alist (list (cons "." (b/var "backup/"))) |
41d290a2 AB |
352 | version-control t |
353 | delete-old-versions t) | |
354 | ||
b57457b2 | 355 | ;; enable automatic reloading of changed buffers and files |
41d290a2 AB |
356 | (global-auto-revert-mode 1) |
357 | (setq auto-revert-verbose nil | |
358 | global-auto-revert-non-file-buffers nil) | |
359 | ||
b57457b2 | 360 | ;; always use space for indentation |
41d290a2 AB |
361 | (setq-default |
362 | indent-tabs-mode nil | |
363 | require-final-newline t | |
364 | tab-width 4) | |
365 | ||
b57457b2 | 366 | ;; enable winner-mode (C-h f winner-mode RET) |
41d290a2 AB |
367 | (winner-mode 1) |
368 | ||
b57457b2 AB |
369 | ;; don't display *compilation* buffer on success. based on |
370 | ;; https://stackoverflow.com/a/17788551, with changes to use `cl-letf' | |
371 | ;; instead of the now obsolete `flet'. | |
41d290a2 | 372 | (with-eval-after-load 'compile |
dca50cf5 | 373 | (defun b/compilation-finish-function (buffer outstr) |
41d290a2 AB |
374 | (unless (string-match "finished" outstr) |
375 | (switch-to-buffer-other-window buffer)) | |
376 | t) | |
377 | ||
dca50cf5 | 378 | (setq compilation-finish-functions #'b/compilation-finish-function) |
41d290a2 AB |
379 | |
380 | (require 'cl-macs) | |
381 | ||
382 | (defadvice compilation-start | |
383 | (around inhibit-display | |
384 | (command &optional mode name-function highlight-regexp)) | |
385 | (if (not (string-match "^\\(find\\|grep\\)" command)) | |
386 | (cl-letf (((symbol-function 'display-buffer) #'ignore)) | |
387 | (save-window-excursion ad-do-it)) | |
388 | ad-do-it)) | |
389 | (ad-activate 'compilation-start)) | |
390 | ||
b57457b2 AB |
391 | ;; search for non-ASCII characters: i’d like non-ASCII characters such |
392 | ;; as ‘’“”«»‹›áⓐ𝒶 to be selected when i search for their ASCII | |
393 | ;; counterpart. shoutout to | |
394 | ;; http://endlessparentheses.com/new-in-emacs-25-1-easily-search-non-ascii-characters.html | |
41d290a2 | 395 | (setq search-default-mode #'char-fold-to-regexp) |
41d290a2 AB |
396 | ;; uncomment to extend this behaviour to query-replace |
397 | ;; (setq replace-char-fold t) | |
398 | ||
b57457b2 | 399 | ;; cursor shape |
41d290a2 AB |
400 | (setq-default cursor-type 'bar) |
401 | ||
b57457b2 | 402 | ;; allow scrolling in Isearch |
41d290a2 AB |
403 | (setq isearch-allow-scroll t) |
404 | ||
b9901074 AB |
405 | ;; open read-only file buffers in view-mode |
406 | ;; (enables niceties like `q' for quit) | |
407 | (setq view-read-only t) | |
408 | ||
dca50cf5 | 409 | (use-package vc |
b1a5d811 AB |
410 | :bind ("C-x v C-=" . vc-ediff)) |
411 | ||
dca50cf5 | 412 | (use-package ediff |
b1a5d811 AB |
413 | :config (add-hook 'ediff-after-quit-hook-internal 'winner-undo) |
414 | :custom ((ediff-window-setup-function 'ediff-setup-windows-plain) | |
415 | (ediff-split-window-function 'split-window-horizontally))) | |
416 | ||
1d405cde AB |
417 | ;; i don't feel like jumping out of my chair every now and again; so |
418 | ;; don't BEEP! at me, emacs | |
419 | (setq ring-bell-function 'ignore) | |
420 | ||
b57457b2 AB |
421 | \f |
422 | ;;; General bindings | |
423 | ||
41d290a2 AB |
424 | (bind-keys |
425 | ("C-c a i" . ielm) | |
426 | ||
427 | ("C-c e b" . eval-buffer) | |
428 | ("C-c e r" . eval-region) | |
429 | ||
430 | ("C-c e i" . emacs-init-time) | |
431 | ("C-c e u" . emacs-uptime) | |
dca50cf5 | 432 | ("C-c e v" . emacs-version) |
41d290a2 AB |
433 | |
434 | ("C-c F m" . make-frame-command) | |
435 | ("C-c F d" . delete-frame) | |
435306f6 | 436 | ("C-c F D" . server-edit) |
41d290a2 | 437 | |
41d290a2 AB |
438 | ("C-S-h C" . describe-char) |
439 | ("C-S-h F" . describe-face) | |
440 | ||
441 | ("C-x k" . kill-this-buffer) | |
442 | ("C-x K" . kill-buffer) | |
443 | ||
b57457b2 | 444 | :map emacs-lisp-mode-map |
dca50cf5 | 445 | ("<C-return>" . b/add-elisp-section)) |
41d290a2 AB |
446 | |
447 | (when (display-graphic-p) | |
448 | (unbind-key "C-z" global-map)) | |
449 | ||
500004f4 AB |
450 | (bind-keys |
451 | ;; for back and forward mouse keys | |
452 | ("<mouse-8>" . previous-buffer) | |
453 | ("<drag-mouse-8>" . previous-buffer) | |
454 | ("<mouse-9>" . next-buffer) | |
455 | ("<drag-mouse-9>" . next-buffer) | |
456 | ("<drag-mouse-2>" . kill-this-buffer) | |
457 | ("<drag-mouse-3>" . ivy-switch-buffer)) | |
458 | ||
b57457b2 AB |
459 | \f |
460 | ;;; Essential packages | |
461 | ||
dca50cf5 | 462 | (use-package org |
41d290a2 AB |
463 | :defer 0.5 |
464 | :config | |
465 | (setq org-src-tab-acts-natively t | |
466 | org-src-preserve-indentation nil | |
467 | org-edit-src-content-indentation 0 | |
468 | org-link-email-description-format "Email %c: %s" ; %.30s | |
469 | org-highlight-latex-and-related '(entities) | |
470 | org-use-speed-commands t | |
471 | org-startup-folded 'content | |
472 | org-catch-invisible-edits 'show-and-error | |
473 | org-log-done 'time) | |
474 | (add-to-list 'org-structure-template-alist '("L" . "src emacs-lisp") t) | |
506ba717 | 475 | (add-to-list 'org-modules 'org-habit) |
41d290a2 AB |
476 | :bind |
477 | (("C-c a o a" . org-agenda) | |
478 | :map org-mode-map | |
479 | ("M-L" . org-insert-last-stored-link) | |
34c6cf4c | 480 | ("M-O" . org-toggle-link-display) |
41d290a2 AB |
481 | ("s-T" . org-todo)) |
482 | :hook ((org-mode . org-indent-mode) | |
483 | (org-mode . auto-fill-mode) | |
484 | (org-mode . flyspell-mode)) | |
485 | :custom | |
561b2e77 | 486 | (org-pretty-entities t) |
41d290a2 | 487 | (org-agenda-files '("~/usr/org/todos/personal.org" |
506ba717 | 488 | "~/usr/org/todos/habits.org" |
561b2e77 | 489 | "~/src/git/masters-thesis/todo.org")) |
41d290a2 | 490 | (org-agenda-start-on-weekday 0) |
506ba717 AB |
491 | (org-agenda-time-leading-zero t) |
492 | (org-habit-graph-column 44) | |
41d290a2 AB |
493 | (org-latex-packages-alist '(("" "listings") ("" "color"))) |
494 | :custom-face | |
495 | '(org-block-begin-line ((t (:foreground "#5a5b5a" :background "#1d1f21")))) | |
496 | '(org-block ((t (:background "#1d1f21")))) | |
497 | '(org-latex-and-related ((t (:foreground "#b294bb"))))) | |
498 | ||
dca50cf5 | 499 | (use-package ox-latex |
41d290a2 AB |
500 | :after ox |
501 | :config | |
502 | (setq org-latex-listings 'listings | |
503 | ;; org-latex-prefer-user-labels t | |
504 | ) | |
505 | (add-to-list 'org-latex-classes | |
506 | '("IEEEtran" "\\documentclass[11pt]{IEEEtran}" | |
507 | ("\\section{%s}" . "\\section*{%s}") | |
508 | ("\\subsection{%s}" . "\\subsection*{%s}") | |
509 | ("\\subsubsection{%s}" . "\\subsubsection*{%s}") | |
510 | ("\\paragraph{%s}" . "\\paragraph*{%s}") | |
511 | ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) | |
512 | t) | |
513 | (require 'ox-beamer)) | |
514 | ||
dca50cf5 | 515 | (use-package ox-extra |
41d290a2 AB |
516 | :config |
517 | (ox-extras-activate '(latex-header-blocks ignore-headlines))) | |
518 | ||
b57457b2 AB |
519 | ;; asynchronous tangle, using emacs-async to asynchronously tangle an |
520 | ;; org file. closely inspired by | |
521 | ;; https://github.com/dieggsy/dotfiles/tree/cc10edf7701958eff1cd94d4081da544d882a28c/emacs.d#dotfiles | |
41d290a2 | 522 | (with-eval-after-load 'org |
dca50cf5 | 523 | (defvar b/show-async-tangle-results nil |
41d290a2 AB |
524 | "Keep *emacs* async buffers around for later inspection.") |
525 | ||
dca50cf5 | 526 | (defvar b/show-async-tangle-time nil |
41d290a2 AB |
527 | "Show the time spent tangling the file.") |
528 | ||
dca50cf5 | 529 | (defun b/async-babel-tangle () |
41d290a2 AB |
530 | "Tangle org file asynchronously." |
531 | (interactive) | |
532 | (let* ((file-tangle-start-time (current-time)) | |
533 | (file (buffer-file-name)) | |
534 | (file-nodir (file-name-nondirectory file)) | |
535 | ;; (async-quiet-switch "-q") | |
536 | (file-noext (file-name-sans-extension file))) | |
537 | (async-start | |
538 | `(lambda () | |
539 | (require 'org) | |
540 | (org-babel-tangle-file ,file)) | |
dca50cf5 | 541 | (unless b/show-async-tangle-results |
41d290a2 AB |
542 | `(lambda (result) |
543 | (if result | |
29ea9439 AB |
544 | (message "Tangled %s%s" |
545 | ,file-nodir | |
dca50cf5 | 546 | (if b/show-async-tangle-time |
29ea9439 AB |
547 | (format " (%.3fs)" |
548 | (float-time (time-subtract (current-time) | |
549 | ',file-tangle-start-time))) | |
550 | "")) | |
41d290a2 AB |
551 | (message "Tangling %s failed" ,file-nodir)))))))) |
552 | ||
553 | (add-to-list | |
554 | 'safe-local-variable-values | |
dca50cf5 | 555 | '(eval add-hook 'after-save-hook #'b/async-babel-tangle 'append 'local)) |
41d290a2 | 556 | |
b57457b2 | 557 | ;; *the* right way to do git |
41d290a2 AB |
558 | (use-package magit |
559 | :defer 0.5 | |
560 | :bind (("C-x g" . magit-status) | |
561 | ("s-g s" . magit-status) | |
562 | ("s-g l" . magit-log-buffer-file)) | |
563 | :config | |
564 | (magit-add-section-hook 'magit-status-sections-hook | |
565 | 'magit-insert-modules | |
566 | 'magit-insert-stashes | |
567 | 'append) | |
568 | (setq magit-repository-directories '(("~/" . 0) | |
569 | ("~/src/git/" . 1))) | |
570 | (nconc magit-section-initial-visibility-alist | |
571 | '(([unpulled status] . show) | |
572 | ([unpushed status] . show))) | |
65643ac8 AB |
573 | (setq transient-history-file (b/var "transient/history.el") |
574 | transient-levels-file (b/etc "transient/levels.el") | |
575 | transient-values-file (b/etc "transient/values.el")) | |
afbbf23a | 576 | :custom (magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1) |
41d290a2 AB |
577 | :custom-face (magit-diff-file-heading ((t (:weight normal))))) |
578 | ||
b57457b2 | 579 | ;; recently opened files |
dca50cf5 | 580 | (use-package recentf |
41d290a2 | 581 | :defer 0.2 |
dca50cf5 | 582 | ;; :config |
9424b3d6 | 583 | ;; (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:") |
dca50cf5 AB |
584 | :custom |
585 | (recentf-max-saved-items 2000) | |
586 | (recentf-save-file (b/var "recentf-save.el"))) | |
41d290a2 | 587 | |
b57457b2 | 588 | ;; smart M-x enhancement (needed by counsel for history) |
65643ac8 AB |
589 | (use-package smex |
590 | :config | |
591 | (setq smex-save-file (b/var "smex-save.el"))) | |
41d290a2 AB |
592 | |
593 | (use-package ivy | |
594 | :defer 0.3 | |
54209e74 | 595 | :delight ;; " 🙒" |
41d290a2 AB |
596 | :bind |
597 | (:map ivy-minibuffer-map | |
598 | ([escape] . keyboard-escape-quit) | |
599 | ([S-up] . ivy-previous-history-element) | |
600 | ([S-down] . ivy-next-history-element) | |
601 | ("DEL" . ivy-backward-delete-char)) | |
602 | :config | |
603 | (setq ivy-wrap t | |
604 | ivy-height 14 | |
605 | ivy-use-virtual-buffers t | |
606 | ivy-virtual-abbreviate 'abbreviate | |
607 | ivy-count-format "%d/%d ") | |
608 | (ivy-mode 1) | |
609 | ;; :custom-face | |
610 | ;; (ivy-minibuffer-match-face-2 ((t (:background "#e99ce8" :weight semi-bold)))) | |
611 | ;; (ivy-minibuffer-match-face-3 ((t (:background "#bbbbff" :weight semi-bold)))) | |
612 | ;; (ivy-minibuffer-match-face-4 ((t (:background "#ffbbff" :weight semi-bold)))) | |
613 | ) | |
614 | ||
615 | (use-package swiper | |
616 | :after ivy | |
617 | :bind (("C-s" . swiper-isearch) | |
618 | ("C-r" . swiper) | |
619 | ("C-S-s" . isearch-forward))) | |
620 | ||
621 | (use-package counsel | |
622 | :after ivy | |
54209e74 | 623 | :delight |
41d290a2 AB |
624 | :bind (([remap execute-extended-command] . counsel-M-x) |
625 | ([remap find-file] . counsel-find-file) | |
626 | ("C-c x" . counsel-M-x) | |
627 | ("C-c f ." . counsel-find-file) | |
628 | ("C-c f l" . counsel-find-library) | |
2b53c994 AB |
629 | ("C-c f r" . counsel-recentf) |
630 | ("s-." . counsel-find-file) | |
631 | ("s-r" . ivy-switch-buffer) | |
41d290a2 AB |
632 | :map minibuffer-local-map |
633 | ("C-r" . counsel-minibuffer-history)) | |
634 | :config | |
635 | (counsel-mode 1) | |
636 | (defalias 'locate #'counsel-locate)) | |
637 | ||
b57457b2 AB |
638 | (comment |
639 | (use-package helm | |
640 | :commands (helm-M-x helm-mini helm-resume) | |
641 | :bind (("M-x" . helm-M-x) | |
642 | ("M-y" . helm-show-kill-ring) | |
643 | ("C-x b" . helm-mini) | |
644 | ("C-x C-b" . helm-buffers-list) | |
645 | ("C-x C-f" . helm-find-files) | |
646 | ("C-h r" . helm-info-emacs) | |
647 | ("s-r" . helm-recentf) | |
648 | ("C-s-r" . helm-resume) | |
649 | :map helm-map | |
650 | ("<tab>" . helm-execute-persistent-action) | |
651 | ("C-i" . helm-execute-persistent-action) ; Make TAB work in terminals | |
652 | ("C-z" . helm-select-action)) ; List actions | |
653 | :config (helm-mode 1))) | |
654 | ||
dca50cf5 | 655 | (use-package eshell |
41d290a2 AB |
656 | :defer 0.5 |
657 | :commands eshell | |
658 | :bind ("C-c a s e" . eshell) | |
659 | :config | |
660 | (eval-when-compile (defvar eshell-prompt-regexp)) | |
dca50cf5 | 661 | (defun b/eshell-quit-or-delete-char (arg) |
41d290a2 AB |
662 | (interactive "p") |
663 | (if (and (eolp) (looking-back eshell-prompt-regexp nil)) | |
664 | (eshell-life-is-too-much) | |
665 | (delete-char arg))) | |
666 | ||
dca50cf5 | 667 | (defun b/eshell-clear () |
41d290a2 AB |
668 | (interactive) |
669 | (let ((inhibit-read-only t)) | |
670 | (erase-buffer)) | |
671 | (eshell-send-input)) | |
672 | ||
dca50cf5 | 673 | (defun b/eshell-setup () |
41d290a2 AB |
674 | (make-local-variable 'company-idle-delay) |
675 | (defvar company-idle-delay) | |
676 | (setq company-idle-delay nil) | |
677 | (bind-keys :map eshell-mode-map | |
dca50cf5 AB |
678 | ("C-d" . b/eshell-quit-or-delete-char) |
679 | ("C-S-l" . b/eshell-clear) | |
41d290a2 AB |
680 | ("M-r" . counsel-esh-history) |
681 | ([tab] . company-complete))) | |
682 | ||
dca50cf5 | 683 | :hook (eshell-mode . b/eshell-setup) |
41d290a2 | 684 | :custom |
dca50cf5 | 685 | (eshell-directory-name (b/var "eshell/")) |
41d290a2 AB |
686 | (eshell-hist-ignoredups t) |
687 | (eshell-input-filter 'eshell-input-filter-initial-space)) | |
688 | ||
dca50cf5 | 689 | (use-package ibuffer |
41d290a2 | 690 | :bind |
92df6c4f | 691 | (("C-x C-b" . ibuffer) |
41d290a2 AB |
692 | :map ibuffer-mode-map |
693 | ("P" . ibuffer-backward-filter-group) | |
694 | ("N" . ibuffer-forward-filter-group) | |
695 | ("M-p" . ibuffer-do-print) | |
696 | ("M-n" . ibuffer-do-shell-command-pipe-replace)) | |
697 | :config | |
698 | ;; Use human readable Size column instead of original one | |
699 | (define-ibuffer-column size-h | |
700 | (:name "Size" :inline t) | |
701 | (cond | |
702 | ((> (buffer-size) 1000000) (format "%7.1fM" (/ (buffer-size) 1000000.0))) | |
703 | ((> (buffer-size) 100000) (format "%7.0fk" (/ (buffer-size) 1000.0))) | |
704 | ((> (buffer-size) 1000) (format "%7.1fk" (/ (buffer-size) 1000.0))) | |
705 | (t (format "%8d" (buffer-size))))) | |
706 | :custom | |
707 | (ibuffer-saved-filter-groups | |
708 | '(("default" | |
709 | ("dired" (mode . dired-mode)) | |
710 | ("org" (mode . org-mode)) | |
711 | ("gnus" | |
712 | (or | |
713 | (mode . gnus-group-mode) | |
714 | (mode . gnus-summary-mode) | |
715 | (mode . gnus-article-mode) | |
716 | ;; not really, but... | |
717 | (mode . message-mode))) | |
718 | ("web" | |
719 | (or | |
720 | (mode . web-mode) | |
721 | (mode . css-mode) | |
722 | (mode . scss-mode) | |
723 | (mode . js2-mode))) | |
724 | ("shell" | |
725 | (or | |
726 | (mode . eshell-mode) | |
727 | (mode . shell-mode) | |
728 | (mode . term-mode))) | |
729 | ("programming" | |
730 | (or | |
731 | (mode . python-mode) | |
732 | (mode . c-mode) | |
733 | (mode . c++-mode) | |
734 | (mode . java-mode) | |
735 | (mode . emacs-lisp-mode) | |
736 | (mode . scheme-mode) | |
737 | (mode . haskell-mode) | |
738 | (mode . lean-mode) | |
99473567 | 739 | (mode . go-mode) |
41d290a2 AB |
740 | (mode . alloy-mode))) |
741 | ("tex" | |
742 | (or | |
743 | (mode . bibtex-mode) | |
744 | (mode . latex-mode))) | |
745 | ("emacs" | |
746 | (or | |
747 | (name . "^\\*scratch\\*$") | |
748 | (name . "^\\*Messages\\*$"))) | |
749 | ("erc" (mode . erc-mode))))) | |
750 | (ibuffer-formats | |
751 | '((mark modified read-only locked " " | |
752 | (name 18 18 :left :elide) | |
753 | " " | |
754 | (size-h 9 -1 :right) | |
755 | " " | |
756 | (mode 16 16 :left :elide) | |
757 | " " filename-and-process) | |
758 | (mark " " | |
759 | (name 16 -1) | |
760 | " " filename))) | |
761 | :hook (ibuffer . (lambda () (ibuffer-switch-to-saved-filter-groups "default")))) | |
762 | ||
dca50cf5 | 763 | (use-package outline |
41d290a2 | 764 | :hook (prog-mode . outline-minor-mode) |
54209e74 | 765 | :delight (outline-minor-mode " outl") |
41d290a2 AB |
766 | :bind |
767 | (:map | |
768 | outline-minor-mode-map | |
769 | ("<s-tab>" . outline-toggle-children) | |
770 | ("M-p" . outline-previous-visible-heading) | |
771 | ("M-n" . outline-next-visible-heading) | |
dca50cf5 | 772 | :prefix-map b/outline-prefix-map |
ed8c4fa9 | 773 | :prefix "s-O" |
41d290a2 AB |
774 | ("TAB" . outline-toggle-children) |
775 | ("a" . outline-hide-body) | |
776 | ("H" . outline-hide-body) | |
777 | ("S" . outline-show-all) | |
778 | ("h" . outline-hide-subtree) | |
779 | ("s" . outline-show-subtree))) | |
780 | ||
dca50cf5 | 781 | (use-package ls-lisp |
41d290a2 AB |
782 | :custom (ls-lisp-dirs-first t)) |
783 | ||
dca50cf5 | 784 | (use-package dired |
41d290a2 AB |
785 | :config |
786 | (setq dired-listing-switches "-alh" | |
787 | ls-lisp-use-insert-directory-program nil) | |
788 | ||
789 | ;; easily diff 2 marked files | |
790 | ;; https://oremacs.com/2017/03/18/dired-ediff/ | |
791 | (defun dired-ediff-files () | |
792 | (interactive) | |
793 | (require 'dired-aux) | |
794 | (defvar ediff-after-quit-hook-internal) | |
795 | (let ((files (dired-get-marked-files)) | |
796 | (wnd (current-window-configuration))) | |
797 | (if (<= (length files) 2) | |
798 | (let ((file1 (car files)) | |
799 | (file2 (if (cdr files) | |
800 | (cadr files) | |
801 | (read-file-name | |
802 | "file: " | |
803 | (dired-dwim-target-directory))))) | |
804 | (if (file-newer-than-file-p file1 file2) | |
805 | (ediff-files file2 file1) | |
806 | (ediff-files file1 file2)) | |
807 | (add-hook 'ediff-after-quit-hook-internal | |
808 | (lambda () | |
809 | (setq ediff-after-quit-hook-internal nil) | |
810 | (set-window-configuration wnd)))) | |
811 | (error "no more than 2 files should be marked")))) | |
06ee5a00 AB |
812 | |
813 | (require 'dired-x) | |
814 | (setq dired-guess-shell-alist-user | |
815 | '(("\\.pdf\\'" "evince" "zathura" "okular") | |
816 | ("\\.doc\\'" "libreoffice") | |
817 | ("\\.docx\\'" "libreoffice") | |
818 | ("\\.ppt\\'" "libreoffice") | |
819 | ("\\.pptx\\'" "libreoffice") | |
820 | ("\\.xls\\'" "libreoffice") | |
821 | ("\\.xlsx\\'" "libreoffice") | |
822 | ("\\.flac\\'" "mpv"))) | |
41d290a2 AB |
823 | :bind (:map dired-mode-map |
824 | ("b" . dired-up-directory) | |
825 | ("e" . dired-ediff-files) | |
826 | ("E" . dired-toggle-read-only) | |
827 | ("\\" . dired-hide-details-mode) | |
828 | ("z" . (lambda () | |
829 | (interactive) | |
dca50cf5 | 830 | (b/dired-start-process "zathura")))) |
41d290a2 AB |
831 | :hook (dired-mode . dired-hide-details-mode)) |
832 | ||
dca50cf5 | 833 | (use-package help |
41d290a2 AB |
834 | :config |
835 | (temp-buffer-resize-mode) | |
836 | (setq help-window-select t)) | |
837 | ||
dca50cf5 | 838 | (use-package tramp |
41d290a2 AB |
839 | :config |
840 | (add-to-list 'tramp-default-proxies-alist '(nil "\\`root\\'" "/ssh:%h:")) | |
841 | (add-to-list 'tramp-default-proxies-alist '("localhost" nil nil)) | |
842 | (add-to-list 'tramp-default-proxies-alist | |
843 | (list (regexp-quote (system-name)) nil nil))) | |
844 | ||
845 | (use-package dash | |
846 | :config (dash-enable-font-lock)) | |
847 | ||
848 | (use-package doc-view | |
849 | :bind (:map doc-view-mode-map | |
850 | ("M-RET" . image-previous-line))) | |
851 | ||
b57457b2 AB |
852 | \f |
853 | ;;; Editing | |
854 | ||
855 | ;; highlight uncommitted changes in the left fringe | |
41d290a2 | 856 | (use-package diff-hl |
df1c9bc8 | 857 | :defer 0.6 |
41d290a2 AB |
858 | :config |
859 | (setq diff-hl-draw-borders nil) | |
860 | (global-diff-hl-mode) | |
861 | :hook (magit-post-refresh . diff-hl-magit-post-refresh)) | |
862 | ||
b57457b2 | 863 | ;; display Lisp objects at point in the echo area |
dca50cf5 | 864 | (use-package eldoc |
41d290a2 | 865 | :when (version< "25" emacs-version) |
54209e74 | 866 | :delight " eldoc" |
41d290a2 AB |
867 | :config (global-eldoc-mode)) |
868 | ||
b57457b2 | 869 | ;; highlight matching parens |
dca50cf5 | 870 | (use-package paren |
41d290a2 AB |
871 | :demand |
872 | :config (show-paren-mode)) | |
873 | ||
dca50cf5 | 874 | (use-package elec-pair |
40eddfea AB |
875 | :demand |
876 | :config (electric-pair-mode)) | |
877 | ||
dca50cf5 | 878 | (use-package simple |
54209e74 | 879 | :delight (auto-fill-function " fill") |
41d290a2 AB |
880 | :config (column-number-mode)) |
881 | ||
b57457b2 | 882 | ;; save minibuffer history |
dca50cf5 AB |
883 | (use-package savehist |
884 | :config | |
885 | (savehist-mode) | |
886 | :custom | |
887 | (savehist-file (b/var "savehist.el"))) | |
41d290a2 | 888 | |
b57457b2 | 889 | ;; automatically save place in files |
dca50cf5 | 890 | (use-package saveplace |
41d290a2 | 891 | :when (version< "25" emacs-version) |
dca50cf5 AB |
892 | :config (save-place-mode) |
893 | :custom | |
894 | (save-place-file (b/var "save-place.el"))) | |
41d290a2 | 895 | |
dca50cf5 | 896 | (use-package prog-mode |
41d290a2 AB |
897 | :config (global-prettify-symbols-mode) |
898 | (defun indicate-buffer-boundaries-left () | |
899 | (setq indicate-buffer-boundaries 'left)) | |
900 | (add-hook 'prog-mode-hook #'indicate-buffer-boundaries-left)) | |
901 | ||
dca50cf5 | 902 | (use-package text-mode |
54209e74 | 903 | :hook (text-mode . indicate-buffer-boundaries-left)) |
41d290a2 | 904 | |
dca50cf5 | 905 | (use-package conf-mode |
300b7363 AB |
906 | :mode "\\.*rc$") |
907 | ||
dca50cf5 | 908 | (use-package sh-mode |
300b7363 AB |
909 | :mode "\\.bashrc$") |
910 | ||
41d290a2 AB |
911 | (use-package company |
912 | :defer 0.6 | |
0c53f5ae | 913 | :delight " comp" |
41d290a2 AB |
914 | :bind |
915 | (:map company-active-map | |
916 | ([tab] . company-complete-common-or-cycle) | |
917 | ([escape] . company-abort)) | |
918 | :custom | |
919 | (company-minimum-prefix-length 1) | |
920 | (company-selection-wrap-around t) | |
921 | (company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]") | |
922 | (company-dabbrev-downcase nil) | |
923 | (company-dabbrev-ignore-case nil) | |
924 | :config | |
925 | (global-company-mode t)) | |
926 | ||
927 | (use-package flycheck | |
928 | :defer 0.6 | |
929 | :hook (prog-mode . flycheck-mode) | |
930 | :bind | |
931 | (:map flycheck-mode-map | |
932 | ("M-P" . flycheck-previous-error) | |
933 | ("M-N" . flycheck-next-error)) | |
934 | :config | |
935 | ;; Use the load-path from running Emacs when checking elisp files | |
936 | (setq flycheck-emacs-lisp-load-path 'inherit) | |
937 | ||
938 | ;; Only flycheck when I actually save the buffer | |
54209e74 AB |
939 | (setq flycheck-check-syntax-automatically '(mode-enabled save)) |
940 | :custom (flycheck-mode-line-prefix "flyc")) | |
941 | ||
dca50cf5 | 942 | (use-package flyspell |
54209e74 | 943 | :delight " flysp") |
41d290a2 AB |
944 | |
945 | ;; http://endlessparentheses.com/ispell-and-apostrophes.html | |
946 | (use-package ispell | |
947 | :defer 0.6 | |
948 | :config | |
949 | ;; ’ can be part of a word | |
950 | (setq ispell-local-dictionary-alist | |
951 | `((nil "[[:alpha:]]" "[^[:alpha:]]" | |
b1ed9ee8 AB |
952 | "['\x2019]" nil ("-B") nil utf-8)) |
953 | ispell-program-name (executable-find "hunspell")) | |
41d290a2 AB |
954 | ;; don't send ’ to the subprocess |
955 | (defun endless/replace-apostrophe (args) | |
956 | (cons (replace-regexp-in-string | |
957 | "’" "'" (car args)) | |
958 | (cdr args))) | |
959 | (advice-add #'ispell-send-string :filter-args | |
960 | #'endless/replace-apostrophe) | |
961 | ||
962 | ;; convert ' back to ’ from the subprocess | |
963 | (defun endless/replace-quote (args) | |
964 | (if (not (derived-mode-p 'org-mode)) | |
965 | args | |
966 | (cons (replace-regexp-in-string | |
967 | "'" "’" (car args)) | |
968 | (cdr args)))) | |
969 | (advice-add #'ispell-parse-output :filter-args | |
970 | #'endless/replace-quote)) | |
971 | ||
dca50cf5 | 972 | (use-package abbrev |
54209e74 | 973 | :delight " abbr" |
dca50cf5 AB |
974 | :hook (text-mode . abbrev-mode) |
975 | :custom | |
976 | (abbrev-file-name (b/var "abbrev.el"))) | |
54209e74 | 977 | |
b57457b2 AB |
978 | \f |
979 | ;;; Programming modes | |
980 | ||
dca50cf5 | 981 | (use-package lisp-mode |
41d290a2 | 982 | :config |
41d290a2 AB |
983 | (defun indent-spaces-mode () |
984 | (setq indent-tabs-mode nil)) | |
985 | (add-hook 'lisp-interaction-mode-hook #'indent-spaces-mode)) | |
986 | ||
dca50cf5 | 987 | (use-package reveal |
54209e74 AB |
988 | :delight (reveal-mode " reveal") |
989 | :hook (emacs-lisp-mode . reveal-mode)) | |
990 | ||
dca50cf5 | 991 | (use-package elisp-mode |
54209e74 AB |
992 | :delight (emacs-lisp-mode "Elisp" :major)) |
993 | ||
dca50cf5 AB |
994 | (comment |
995 | ;; TODO | |
996 | (use-package alloy-mode | |
997 | :straight (:host github :repo "dwwmmn/alloy-mode") | |
998 | :mode "\\.als\\'" | |
999 | :config (setq alloy-basic-offset 2)) | |
1000 | ||
1001 | (use-package proof-site ; for Coq | |
1002 | :straight proof-general) | |
1003 | ||
1004 | (eval-when-compile (defvar lean-mode-map)) | |
1005 | (use-package lean-mode | |
1006 | :defer 0.4 | |
1007 | :bind (:map lean-mode-map | |
1008 | ("S-SPC" . company-complete)) | |
1009 | :config | |
1010 | (require 'lean-input) | |
1011 | (setq default-input-method "Lean" | |
1012 | lean-input-tweak-all '(lean-input-compose | |
1013 | (lean-input-prepend "/") | |
1014 | (lean-input-nonempty)) | |
1015 | lean-input-user-translations '(("/" "/"))) | |
1016 | (lean-input-setup)) | |
1017 | ||
1018 | (use-package haskell-mode | |
1019 | :config | |
1020 | (setq haskell-indentation-layout-offset 4 | |
1021 | haskell-indentation-left-offset 4 | |
1022 | flycheck-checker 'haskell-hlint | |
1023 | flycheck-disabled-checkers '(haskell-stack-ghc haskell-ghc))) | |
1024 | ||
1025 | (use-package dante | |
1026 | :after haskell-mode | |
1027 | :commands dante-mode | |
1028 | :hook (haskell-mode . dante-mode)) | |
1029 | ||
1030 | (use-package hlint-refactor | |
1031 | :after haskell-mode | |
1032 | :bind (:map hlint-refactor-mode-map | |
1033 | ("C-c l b" . hlint-refactor-refactor-buffer) | |
1034 | ("C-c l r" . hlint-refactor-refactor-at-point)) | |
1035 | :hook (haskell-mode . hlint-refactor-mode)) | |
1036 | ||
1037 | (use-package flycheck-haskell | |
1038 | :after haskell-mode) | |
1039 | ;; alternative: hs-lint https://github.com/ndmitchell/hlint/blob/20e116a043f2073c57b17b24ae6364b5e433ba7e/data/hs-lint.el | |
1040 | ) | |
41d290a2 AB |
1041 | |
1042 | (use-package sgml-mode | |
1043 | :config | |
1044 | (setq sgml-basic-offset 2)) | |
1045 | ||
1046 | (use-package css-mode | |
1047 | :config | |
1048 | (setq css-indent-offset 2)) | |
1049 | ||
1050 | (use-package web-mode | |
1051 | :mode "\\.html\\'" | |
1052 | :config | |
dca50cf5 | 1053 | (b/setq-every 2 |
41d290a2 AB |
1054 | web-mode-code-indent-offset |
1055 | web-mode-css-indent-offset | |
1056 | web-mode-markup-indent-offset)) | |
1057 | ||
1058 | (use-package emmet-mode | |
1059 | :after (:any web-mode css-mode sgml-mode) | |
1060 | :bind* (("C-)" . emmet-next-edit-point) | |
1061 | ("C-(" . emmet-prev-edit-point)) | |
1062 | :config | |
1063 | (unbind-key "C-j" emmet-mode-keymap) | |
1064 | (setq emmet-move-cursor-between-quotes t) | |
1065 | :hook (web-mode css-mode html-mode sgml-mode)) | |
1066 | ||
b57457b2 AB |
1067 | (comment |
1068 | (use-package meghanada | |
1069 | :bind | |
1070 | (:map meghanada-mode-map | |
1071 | (("C-M-o" . meghanada-optimize-import) | |
1072 | ("C-M-t" . meghanada-import-all))) | |
1073 | :hook (java-mode . meghanada-mode))) | |
1074 | ||
1075 | (comment | |
1076 | (use-package treemacs | |
1077 | :config (setq treemacs-never-persist t)) | |
1078 | ||
1079 | (use-package yasnippet | |
1080 | :config | |
1081 | ;; (yas-global-mode) | |
1082 | ) | |
1083 | ||
1084 | (use-package lsp-mode | |
1085 | :init (setq lsp-eldoc-render-all nil | |
1086 | lsp-highlight-symbol-at-point nil) | |
1087 | ) | |
1088 | ||
1089 | (use-package hydra) | |
1090 | ||
1091 | (use-package company-lsp | |
1092 | :after company | |
1093 | :config | |
1094 | (setq company-lsp-cache-candidates t | |
1095 | company-lsp-async t)) | |
1096 | ||
1097 | (use-package lsp-ui | |
1098 | :config | |
1099 | (setq lsp-ui-sideline-update-mode 'point)) | |
1100 | ||
1101 | (use-package lsp-java | |
1102 | :config | |
1103 | (add-hook 'java-mode-hook | |
1104 | (lambda () | |
1105 | (setq-local company-backends (list 'company-lsp)))) | |
1106 | ||
1107 | (add-hook 'java-mode-hook 'lsp-java-enable) | |
1108 | (add-hook 'java-mode-hook 'flycheck-mode) | |
1109 | (add-hook 'java-mode-hook 'company-mode) | |
1110 | (add-hook 'java-mode-hook 'lsp-ui-mode)) | |
1111 | ||
1112 | (use-package dap-mode | |
1113 | :after lsp-mode | |
1114 | :config | |
1115 | (dap-mode t) | |
1116 | (dap-ui-mode t)) | |
1117 | ||
1118 | (use-package dap-java | |
1119 | :after (lsp-java)) | |
1120 | ||
1121 | (use-package lsp-java-treemacs | |
1122 | :after (treemacs))) | |
1123 | ||
1124 | (comment | |
1125 | (use-package eclim | |
1126 | :bind (:map eclim-mode-map ("S-SPC" . company-complete)) | |
1127 | :hook ((java-mode . eclim-mode) | |
1128 | (eclim-mode . (lambda () | |
1129 | (make-local-variable 'company-idle-delay) | |
1130 | (defvar company-idle-delay) | |
1131 | ;; (setq company-idle-delay 0.7) | |
1132 | (setq company-idle-delay nil)))) | |
1133 | :custom | |
1134 | (eclim-auto-save nil) | |
1135 | ;; (eclimd-default-workspace "~/src/eclipse-workspace-exp") | |
1136 | (eclim-executable "~/.p2/pool/plugins/org.eclim_2.8.0/bin/eclim") | |
1137 | (eclim-eclipse-dirs '("~/usr/eclipse/dsl-2018-09/eclipse")))) | |
1138 | ||
65643ac8 AB |
1139 | (use-package geiser |
1140 | :config | |
1141 | (make-directory (b/var "geiser/") t) | |
1142 | (setq geiser-repl-history-filename (b/var "geiser/repl-history"))) | |
41d290a2 | 1143 | |
dca50cf5 | 1144 | (use-package geiser-guile |
41d290a2 AB |
1145 | :config |
1146 | (setq geiser-guile-load-path "~/src/git/guix")) | |
1147 | ||
1148 | (use-package guix) | |
1149 | ||
b57457b2 AB |
1150 | (comment |
1151 | (use-package auctex | |
1152 | :custom | |
1153 | (font-latex-fontify-sectioning 'color))) | |
1154 | ||
99473567 AB |
1155 | (use-package go-mode) |
1156 | ||
f704f564 AB |
1157 | (use-package po-mode |
1158 | :hook | |
1159 | (po-mode . (lambda () (run-with-timer 0.1 nil 'View-exit)))) | |
1160 | ||
748bd8ac AB |
1161 | (use-package tex-mode |
1162 | :config | |
1163 | (cl-delete-if | |
1164 | (lambda (p) (string-match "^---?" (car p))) | |
1165 | tex--prettify-symbols-alist)) | |
1166 | ||
b57457b2 AB |
1167 | \f |
1168 | ;;; Theme | |
1169 | ||
dca50cf5 AB |
1170 | (add-to-list 'custom-theme-load-path |
1171 | (expand-file-name | |
1172 | (convert-standard-filename "lisp") user-emacs-directory)) | |
b57457b2 AB |
1173 | (load-theme 'tangomod t) |
1174 | ||
1175 | (use-package smart-mode-line | |
1176 | :commands (sml/apply-theme) | |
1177 | :demand | |
1178 | :config | |
26906e22 AB |
1179 | (sml/setup) |
1180 | (smart-mode-line-enable)) | |
b57457b2 | 1181 | |
dca50cf5 AB |
1182 | (comment |
1183 | ;; TODO | |
1184 | (use-package doom-themes)) | |
b57457b2 | 1185 | |
dca50cf5 | 1186 | (defvar b/org-mode-font-lock-keywords |
b57457b2 AB |
1187 | '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)" |
1188 | (1 '(:foreground "#5a5b5a" :background "#292b2b") t) ; directive | |
1189 | (3 '(:foreground "#81a2be" :background "#292b2b") t) ; kind | |
1190 | (4 '(:foreground "#c5c8c6") t)))) ; title | |
1191 | ||
dca50cf5 | 1192 | (defun b/lights-on () |
b57457b2 AB |
1193 | "Enable my favourite light theme." |
1194 | (interactive) | |
1195 | (mapc #'disable-theme custom-enabled-themes) | |
1196 | (load-theme 'tangomod t) | |
1197 | (sml/apply-theme 'automatic) | |
1198 | (font-lock-remove-keywords | |
dca50cf5 | 1199 | 'org-mode b/org-mode-font-lock-keywords)) |
b57457b2 | 1200 | |
dca50cf5 | 1201 | (defun b/lights-off () |
b57457b2 AB |
1202 | "Go dark." |
1203 | (interactive) | |
1204 | (mapc #'disable-theme custom-enabled-themes) | |
dca50cf5 | 1205 | ;; (load-theme 'doom-tomorrow-night t) |
b57457b2 AB |
1206 | (sml/apply-theme 'automatic) |
1207 | (font-lock-add-keywords | |
dca50cf5 | 1208 | 'org-mode b/org-mode-font-lock-keywords t)) |
b57457b2 AB |
1209 | |
1210 | (bind-keys | |
dca50cf5 AB |
1211 | ("s-t d" . b/lights-off) |
1212 | ("s-t l" . b/lights-on)) | |
b57457b2 AB |
1213 | |
1214 | \f | |
1215 | ;;; Emacs enhancements & auxiliary packages | |
1216 | ||
dca50cf5 | 1217 | (use-package man |
41d290a2 AB |
1218 | :config (setq Man-width 80)) |
1219 | ||
1220 | (use-package which-key | |
1221 | :defer 0.4 | |
54209e74 | 1222 | :delight |
41d290a2 AB |
1223 | :config |
1224 | (which-key-add-key-based-replacements | |
1225 | ;; prefixes for global prefixes and minor modes | |
1226 | "C-c @" "outline" | |
1227 | "C-c !" "flycheck" | |
1228 | "C-c 8" "typo" | |
1229 | "C-c 8 -" "typo/dashes" | |
1230 | "C-c 8 <" "typo/left-brackets" | |
1231 | "C-c 8 >" "typo/right-brackets" | |
1232 | "C-x 8" "unicode" | |
1233 | "C-x a" "abbrev/expand" | |
1234 | "C-x r" "rectangle/register/bookmark" | |
1235 | "C-x v" "version control" | |
1236 | ;; prefixes for my personal bindings | |
1237 | "C-c a" "applications" | |
1238 | "C-c a e" "erc" | |
1239 | "C-c a o" "org" | |
1240 | "C-c a s" "shells" | |
1241 | "C-c p" "package-management" | |
1242 | ;; "C-c p e" "package-management/epkg" | |
1243 | "C-c p s" "straight.el" | |
1244 | "C-c psa" "all" | |
1245 | "C-c psp" "package" | |
1246 | "C-c c" "compile-and-comments" | |
1247 | "C-c e" "eval" | |
1248 | "C-c f" "files" | |
1249 | "C-c F" "frames" | |
1250 | "C-S-h" "help(ful)" | |
1251 | "C-c m" "multiple-cursors" | |
1252 | "C-c P" "projectile" | |
1253 | "C-c P s" "projectile/search" | |
1254 | "C-c P x" "projectile/execute" | |
1255 | "C-c P 4" "projectile/other-window" | |
1256 | "C-c q" "boxquote" | |
1257 | "s-g" "magit" | |
ed8c4fa9 | 1258 | "s-O" "outline" |
41d290a2 AB |
1259 | "s-t" "themes") |
1260 | ||
1261 | ;; prefixes for major modes | |
1262 | (which-key-add-major-mode-key-based-replacements 'message-mode | |
1263 | "C-c f" "footnote") | |
1264 | (which-key-add-major-mode-key-based-replacements 'org-mode | |
1265 | "C-c C-v" "org-babel") | |
1266 | (which-key-add-major-mode-key-based-replacements 'web-mode | |
1267 | "C-c C-a" "web/attributes" | |
1268 | "C-c C-b" "web/blocks" | |
1269 | "C-c C-d" "web/dom" | |
1270 | "C-c C-e" "web/element" | |
1271 | "C-c C-t" "web/tags") | |
1272 | ||
1273 | (which-key-mode) | |
1274 | :custom | |
1275 | (which-key-add-column-padding 5) | |
1276 | (which-key-max-description-length 32)) | |
1277 | ||
b57457b2 | 1278 | (use-package crux ; results in Waiting for git... [2 times] |
41d290a2 AB |
1279 | :defer 0.4 |
1280 | :bind (("C-c b k" . crux-kill-other-buffers) | |
1281 | ("C-c d" . crux-duplicate-current-line-or-region) | |
1282 | ("C-c D" . crux-duplicate-and-comment-current-line-or-region) | |
1283 | ("C-c f c" . crux-copy-file-preserve-attributes) | |
1284 | ("C-c f d" . crux-delete-file-and-buffer) | |
1285 | ("C-c f r" . crux-rename-file-and-buffer) | |
1286 | ("C-c j" . crux-top-join-line) | |
1287 | ("C-S-j" . crux-top-join-line))) | |
1288 | ||
5b10d879 AB |
1289 | (use-package mwim |
1290 | :bind (("C-a" . mwim-beginning-of-code-or-line) | |
1291 | ("C-e" . mwim-end-of-code-or-line) | |
1292 | ("<home>" . mwim-beginning-of-line-or-code) | |
1293 | ("<end>" . mwim-end-of-line-or-code))) | |
41d290a2 AB |
1294 | |
1295 | (use-package projectile | |
26906e22 | 1296 | :defer 0.5 |
41d290a2 AB |
1297 | :bind-keymap ("C-c P" . projectile-command-map) |
1298 | :config | |
65643ac8 | 1299 | (make-directory (b/var "projectile/") t) |
41d290a2 AB |
1300 | (projectile-mode) |
1301 | ||
dca50cf5 | 1302 | (defun b/projectile-mode-line-fun () |
26906e22 AB |
1303 | "Report project name and type in the modeline." |
1304 | (let ((project-name (projectile-project-name)) | |
1305 | (project-type (projectile-project-type))) | |
1306 | (format "%s%s" | |
1307 | projectile-mode-line-prefix | |
1308 | (if project-type | |
1309 | (format ":%s" project-type) | |
1310 | "")))) | |
dca50cf5 | 1311 | (setq projectile-mode-line-function 'b/projectile-mode-line-fun) |
26906e22 | 1312 | |
41d290a2 AB |
1313 | (defun my-projectile-invalidate-cache (&rest _args) |
1314 | ;; ignore the args to `magit-checkout' | |
1315 | (projectile-invalidate-cache nil)) | |
1316 | ||
1317 | (eval-after-load 'magit-branch | |
1318 | '(progn | |
1319 | (advice-add 'magit-checkout | |
1320 | :after #'my-projectile-invalidate-cache) | |
1321 | (advice-add 'magit-branch-and-checkout | |
1322 | :after #'my-projectile-invalidate-cache))) | |
54209e74 | 1323 | :custom |
65643ac8 | 1324 | (projectile-cache-file (b/var "projectile/cache.el")) |
54209e74 | 1325 | (projectile-completion-system 'ivy) |
65643ac8 | 1326 | (projectile-known-projects-file (b/var "projectile/known-projects.el")) |
54209e74 | 1327 | (projectile-mode-line-prefix " proj")) |
41d290a2 AB |
1328 | |
1329 | (use-package helpful | |
1330 | :defer 0.6 | |
1331 | :bind | |
1332 | (("C-S-h c" . helpful-command) | |
1333 | ("C-S-h f" . helpful-callable) ; helpful-function | |
1334 | ("C-S-h v" . helpful-variable) | |
1335 | ("C-S-h k" . helpful-key) | |
1336 | ("C-S-h p" . helpful-at-point))) | |
1337 | ||
5b10d879 AB |
1338 | (use-package unkillable-scratch |
1339 | :defer 0.6 | |
1340 | :config | |
1341 | (unkillable-scratch 1) | |
1342 | :custom | |
1343 | (unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$"))) | |
41d290a2 | 1344 | |
5b10d879 AB |
1345 | ;; ,---- |
1346 | ;; | make pretty boxed quotes like this | |
1347 | ;; `---- | |
1348 | (use-package boxquote | |
1349 | :defer 0.6 | |
1350 | :bind | |
1351 | (:prefix-map b/boxquote-prefix-map | |
1352 | :prefix "C-c q" | |
1353 | ("b" . boxquote-buffer) | |
1354 | ("B" . boxquote-insert-buffer) | |
1355 | ("d" . boxquote-defun) | |
1356 | ("F" . boxquote-insert-file) | |
1357 | ("hf" . boxquote-describe-function) | |
1358 | ("hk" . boxquote-describe-key) | |
1359 | ("hv" . boxquote-describe-variable) | |
1360 | ("hw" . boxquote-where-is) | |
1361 | ("k" . boxquote-kill) | |
1362 | ("p" . boxquote-paragraph) | |
1363 | ("q" . boxquote-boxquote) | |
1364 | ("r" . boxquote-region) | |
1365 | ("s" . boxquote-shell-command) | |
1366 | ("t" . boxquote-text) | |
1367 | ("T" . boxquote-title) | |
1368 | ("u" . boxquote-unbox) | |
1369 | ("U" . boxquote-unbox-region) | |
1370 | ("y" . boxquote-yank) | |
1371 | ("M-q" . boxquote-fill-paragraph) | |
1372 | ("M-w" . boxquote-kill-ring-save))) | |
41d290a2 AB |
1373 | |
1374 | (use-package orgalist | |
b57457b2 | 1375 | ;; http://lists.gnu.org/archive/html/emacs-orgmode/2019-04/msg00007.html |
41d290a2 AB |
1376 | :disabled t |
1377 | :after message | |
1378 | :hook (message-mode . orgalist-mode)) | |
1379 | ||
b57457b2 | 1380 | ;; easily type pretty quotes & other typography, like ‘’“”-–—«»‹› |
41d290a2 AB |
1381 | (use-package typo |
1382 | :defer 0.5 | |
54209e74 | 1383 | :delight " typo" |
41d290a2 AB |
1384 | :config |
1385 | (typo-global-mode 1) | |
54209e74 | 1386 | :hook ((text-mode erc-mode) . typo-mode)) |
41d290a2 | 1387 | |
b57457b2 | 1388 | ;; highlight TODOs in buffers |
41d290a2 AB |
1389 | (use-package hl-todo |
1390 | :defer 0.5 | |
1391 | :config | |
1392 | (global-hl-todo-mode)) | |
1393 | ||
5b10d879 AB |
1394 | (use-package shrink-path |
1395 | :defer 0.5 | |
1396 | :after eshell | |
1397 | :config | |
1398 | (defvar user-@-host (concat (user-login-name) "@" (system-name) " ")) | |
1399 | (defun +eshell/prompt () | |
1400 | (let ((base/dir (shrink-path-prompt default-directory))) | |
1401 | (concat (propertize user-@-host 'face 'default) | |
1402 | (propertize (car base/dir) | |
1403 | 'face 'font-lock-comment-face) | |
1404 | (propertize (cdr base/dir) | |
1405 | 'face 'font-lock-constant-face) | |
1406 | (propertize "> " 'face 'default)))) | |
1407 | (setq eshell-prompt-regexp (concat user-@-host ".*> ") | |
1408 | eshell-prompt-function #'+eshell/prompt)) | |
41d290a2 AB |
1409 | |
1410 | (use-package eshell-up | |
1411 | :after eshell | |
1412 | :commands eshell-up) | |
1413 | ||
1414 | (use-package multi-term | |
1415 | :defer 0.6 | |
fb078e63 AB |
1416 | :bind (("C-c a s m m" . multi-term) |
1417 | ("C-c a s m d" . multi-term-dedicated-toggle) | |
1418 | ("C-c a s m p" . multi-term-prev) | |
1419 | ("C-c a s m n" . multi-term-next) | |
41d290a2 | 1420 | :map term-mode-map |
0af1e91a | 1421 | ("C-c C-j" . term-char-mode)) |
41d290a2 | 1422 | :config |
96c704d7 AB |
1423 | (setq multi-term-program "screen" |
1424 | multi-term-program-switches (concat "-c" | |
1425 | (getenv "XDG_CONFIG_HOME") | |
1426 | "/screen/screenrc") | |
41d290a2 AB |
1427 | ;; TODO: add separate bindings for connecting to existing |
1428 | ;; session vs. always creating a new one | |
1429 | multi-term-dedicated-select-after-open-p t | |
1430 | multi-term-dedicated-window-height 20 | |
1431 | multi-term-dedicated-max-window-height 30 | |
1432 | term-bind-key-alist | |
1433 | '(("C-c C-c" . term-interrupt-subjob) | |
1434 | ("C-c C-e" . term-send-esc) | |
0af1e91a | 1435 | ("C-c C-j" . term-line-mode) |
41d290a2 | 1436 | ("C-k" . kill-line) |
fb078e63 AB |
1437 | ;; ("C-y" . term-paste) |
1438 | ("C-y" . term-send-raw) | |
41d290a2 AB |
1439 | ("M-f" . term-send-forward-word) |
1440 | ("M-b" . term-send-backward-word) | |
1441 | ("M-p" . term-send-up) | |
1442 | ("M-n" . term-send-down) | |
fb078e63 AB |
1443 | ("M-j" . term-send-raw-meta) |
1444 | ("M-y" . term-send-raw-meta) | |
1445 | ("M-/" . term-send-raw-meta) | |
1446 | ("M-0" . term-send-raw-meta) | |
1447 | ("M-1" . term-send-raw-meta) | |
1448 | ("M-2" . term-send-raw-meta) | |
1449 | ("M-3" . term-send-raw-meta) | |
1450 | ("M-4" . term-send-raw-meta) | |
1451 | ("M-5" . term-send-raw-meta) | |
1452 | ("M-6" . term-send-raw-meta) | |
1453 | ("M-7" . term-send-raw-meta) | |
1454 | ("M-8" . term-send-raw-meta) | |
1455 | ("M-9" . term-send-raw-meta) | |
41d290a2 AB |
1456 | ("<C-backspace>" . term-send-backward-kill-word) |
1457 | ("<M-DEL>" . term-send-backward-kill-word) | |
1458 | ("M-d" . term-send-delete-word) | |
1459 | ("M-," . term-send-raw) | |
1460 | ("M-." . comint-dynamic-complete)) | |
1461 | term-unbind-key-alist | |
fb078e63 AB |
1462 | '("C-z" "C-x" "C-c" "C-h" |
1463 | ;; "C-y" | |
1464 | "<ESC>"))) | |
41d290a2 AB |
1465 | |
1466 | (use-package page-break-lines | |
b57457b2 | 1467 | :defer 0.5 |
54209e74 | 1468 | :delight " pgln" |
2f5d8190 AB |
1469 | :custom |
1470 | (page-break-lines-max-width fill-column) | |
41d290a2 AB |
1471 | :config |
1472 | (global-page-break-lines-mode)) | |
1473 | ||
1474 | (use-package expand-region | |
1475 | :bind ("C-=" . er/expand-region)) | |
1476 | ||
1477 | (use-package multiple-cursors | |
1478 | :bind | |
1479 | (("C-S-<mouse-1>" . mc/add-cursor-on-click) | |
dca50cf5 | 1480 | (:prefix-map b/mc-prefix-map |
41d290a2 AB |
1481 | :prefix "C-c m" |
1482 | ("c" . mc/edit-lines) | |
1483 | ("n" . mc/mark-next-like-this) | |
1484 | ("p" . mc/mark-previous-like-this) | |
65643ac8 AB |
1485 | ("a" . mc/mark-all-like-this))) |
1486 | :config | |
1487 | (setq mc/list-file (b/var "mc-list.el"))) | |
41d290a2 | 1488 | |
dca50cf5 AB |
1489 | (comment |
1490 | ;; TODO | |
1491 | (use-package forge | |
1492 | :after magit | |
1493 | :demand)) | |
41d290a2 AB |
1494 | |
1495 | (use-package yasnippet | |
1496 | :defer 0.6 | |
1497 | :config | |
1498 | (defconst yas-verbosity-cur yas-verbosity) | |
1499 | (setq yas-verbosity 2) | |
65643ac8 | 1500 | (setq yas-snippet-dirs (list (b/etc "yasnippet/snippets/"))) |
476f6228 | 1501 | (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets" t) |
41d290a2 AB |
1502 | (yas-reload-all) |
1503 | (setq yas-verbosity yas-verbosity-cur) | |
476f6228 | 1504 | (yas-global-mode)) |
41d290a2 | 1505 | |
dca50cf5 | 1506 | (use-package debbugs) |
41d290a2 AB |
1507 | |
1508 | (use-package org-ref | |
1509 | :init | |
dca50cf5 | 1510 | (b/setq-every '("~/usr/org/references.bib") |
41d290a2 AB |
1511 | reftex-default-bibliography |
1512 | org-ref-default-bibliography) | |
1513 | (setq | |
1514 | org-ref-bibliography-notes "~/usr/org/notes.org" | |
1515 | org-ref-pdf-directory "~/usr/org/bibtex-pdfs/")) | |
1516 | ||
41d290a2 AB |
1517 | (use-package alert |
1518 | :commands (alert) | |
83a17ce5 | 1519 | :init (setq alert-default-style 'notifications)) |
41d290a2 | 1520 | |
2f5d8190 AB |
1521 | ;; (use-package fill-column-indicator) |
1522 | ||
b46ed2ba | 1523 | (use-package emojify |
65643ac8 AB |
1524 | :config |
1525 | (make-directory (b/var "emojify/") t) | |
1526 | (setq emojify-emojis-dir (b/var "emojify/")) | |
b46ed2ba AB |
1527 | :hook (erc-mode . emojify-mode)) |
1528 | ||
dca50cf5 | 1529 | (use-package window |
ed8c4fa9 AB |
1530 | :bind |
1531 | (("s-o" . other-window) | |
ed8c4fa9 AB |
1532 | ("s-/ ." . split-window-right) |
1533 | ("s-/ ," . split-window-below) | |
1534 | ("s-/ 0" . delete-window) | |
92df6c4f AB |
1535 | ("s-q" . delete-window)) |
1536 | :custom | |
1537 | (split-width-threshold 150)) | |
ed8c4fa9 | 1538 | |
dca50cf5 | 1539 | (use-package windmove |
ed8c4fa9 AB |
1540 | :defer 0.6 |
1541 | :bind | |
1542 | (("s-h" . windmove-left) | |
1543 | ("s-j" . windmove-down) | |
1544 | ("s-k" . windmove-up) | |
1545 | ("s-l" . windmove-right) | |
1546 | ("s-H" . windmove-swap-states-left) | |
1547 | ("s-J" . windmove-swap-states-down) | |
1548 | ("s-K" . windmove-swap-states-up) | |
1549 | ("s-L" . windmove-swap-states-right))) | |
1550 | ||
05068e71 AB |
1551 | (use-package pass |
1552 | :commands pass | |
1553 | :bind ("C-c a p" . pass) | |
1554 | :hook (pass-mode . View-exit)) | |
1555 | ||
b188e798 AB |
1556 | (use-package pdf-tools |
1557 | :defer 0.5 | |
1558 | :bind (:map pdf-view-mode-map | |
1559 | ("M-RET" . image-previous-line)) | |
1560 | :config (pdf-tools-install nil t)) | |
1561 | ||
9de75957 AB |
1562 | (use-package biblio) |
1563 | ||
b57457b2 AB |
1564 | \f |
1565 | ;;; Email (with Gnus) | |
1566 | ||
dca50cf5 | 1567 | (defvar b/maildir (expand-file-name "~/mail/")) |
41d290a2 | 1568 | (with-eval-after-load 'recentf |
dca50cf5 | 1569 | (add-to-list 'recentf-exclude b/maildir)) |
41d290a2 AB |
1570 | |
1571 | (setq | |
dca50cf5 | 1572 | b/gnus-init-file (b/etc "gnus") |
41d290a2 AB |
1573 | mail-user-agent 'gnus-user-agent |
1574 | read-mail-command 'gnus) | |
1575 | ||
dca50cf5 | 1576 | (use-package gnus |
41d290a2 AB |
1577 | :bind (("s-m" . gnus) |
1578 | ("s-M" . gnus-unplugged)) | |
1579 | :init | |
1580 | (setq | |
1581 | gnus-select-method '(nnnil "") | |
1582 | gnus-secondary-select-methods | |
d4cc5497 | 1583 | '((nnimap "shemshak" |
41d290a2 AB |
1584 | (nnimap-stream plain) |
1585 | (nnimap-address "127.0.0.1") | |
1586 | (nnimap-server-port 143) | |
1587 | (nnimap-authenticator plain) | |
4ed3a945 | 1588 | (nnimap-user "amin@shemshak.local")) |
2e9074a4 AB |
1589 | (nnimap "gnu" |
1590 | (nnimap-stream plain) | |
1591 | (nnimap-address "127.0.0.1") | |
1592 | (nnimap-server-port 143) | |
1593 | (nnimap-authenticator plain) | |
7f88c321 AB |
1594 | (nnimap-user "bandali@gnu.local") |
1595 | (nnimap-inbox "INBOX") | |
1596 | (nnimap-split-methods 'nnimap-split-fancy) | |
1597 | (nnimap-split-fancy (| | |
29e42dc1 | 1598 | ;; (: gnus-registry-split-fancy-with-parent) |
7f88c321 AB |
1599 | ;; (: gnus-group-split-fancy "INBOX" t "INBOX") |
1600 | ;; gnu | |
f02d2b28 | 1601 | (list ".*<\\(.*\\)\\.\\(non\\)?gnu\\.org>.*" "l.\\1") |
e81c7cd4 AB |
1602 | ;; *@lists.sr.ht, omitting one dot if present |
1603 | ;; add more \\.?\\([^.@]*\\) if needed | |
1604 | (list ".*<~\\(.*\\)/\\([^.@]*\\)\\.?\\([^.@]*\\)@lists.sr.ht>.*" "l.~\\1.\\2\\3") | |
9747f63f AB |
1605 | ;; webmasters |
1606 | (from "webmasters\\(-comment\\)?@gnu\\.org" "webmasters") | |
7f88c321 | 1607 | ;; other |
859ba2a0 | 1608 | (list ".*atreus.freelists.org" "l.atreus") |
7f88c321 | 1609 | (list ".*deepspec.lists.cs.princeton.edu" "l.deepspec") |
f02d2b28 AB |
1610 | ;; (list ".*haskell-art.we.lurk.org" "l.haskell.art") ;d |
1611 | (list ".*haskell-cafe.haskell.org" "l.haskell.cafe") | |
1612 | ;; (list ".*notmuch.notmuchmail.org" "l.notmuch") ;u | |
1613 | ;; (list ".*dev.lists.parabola.nu" "l.parabola-dev") ;u | |
1614 | ;; ---------------------------------- | |
1615 | ;; legend: (u)nsubscribed | (d)ead | |
1616 | ;; ---------------------------------- | |
1617 | ;; otherwise, leave mail in INBOX | |
7f88c321 | 1618 | "INBOX"))) |
727d14d3 | 1619 | (nnimap "uw" |
41d290a2 AB |
1620 | (nnimap-stream plain) |
1621 | (nnimap-address "127.0.0.1") | |
1622 | (nnimap-server-port 143) | |
1623 | (nnimap-authenticator plain) | |
f0d99991 AB |
1624 | (nnimap-user "abandali@uw.local") |
1625 | (nnimap-inbox "INBOX") | |
1626 | (nnimap-split-methods 'nnimap-split-fancy) | |
1627 | (nnimap-split-fancy (| | |
29e42dc1 | 1628 | ;; (: gnus-registry-split-fancy-with-parent) |
5b8a18a4 AB |
1629 | ;; se212-f19 |
1630 | ("subject" "SE\\s-?212" "course.se463-s19") | |
1631 | (from "SE\\s-?212" "course.se463-s19") | |
f0d99991 AB |
1632 | ;; catch-all |
1633 | "INBOX"))) | |
727d14d3 | 1634 | (nnimap "csc" |
41d290a2 AB |
1635 | (nnimap-stream plain) |
1636 | (nnimap-address "127.0.0.1") | |
1637 | (nnimap-server-port 143) | |
1638 | (nnimap-authenticator plain) | |
727d14d3 | 1639 | (nnimap-user "abandali@csc.uw.local"))) |
d4cc5497 | 1640 | gnus-message-archive-group "nnimap+shemshak:Sent" |
41d290a2 | 1641 | gnus-parameters |
859ba2a0 AB |
1642 | '(("l\\.atreus" |
1643 | (to-address . "atreus@freelists.org") | |
1644 | (to-list . "atreus@freelists.org")) | |
1645 | ("l\\.deepspec" | |
41d290a2 | 1646 | (to-address . "deepspec@lists.cs.princeton.edu") |
778202b8 AB |
1647 | (to-list . "deepspec@lists.cs.princeton.edu") |
1648 | (list-identifier . "\\[deepspec\\]")) | |
cb4015f6 | 1649 | ("l\\.emacs-devel" |
74fd778e AB |
1650 | (to-address . "emacs-devel@gnu.org") |
1651 | (to-list . "emacs-devel@gnu.org")) | |
cb4015f6 | 1652 | ("l\\.help-gnu-emacs" |
74fd778e AB |
1653 | (to-address . "help-gnu-emacs@gnu.org") |
1654 | (to-list . "help-gnu-emacs@gnu.org")) | |
cb4015f6 | 1655 | ("l\\.info-gnu-emacs" |
74fd778e AB |
1656 | (to-address . "info-gnu-emacs@gnu.org") |
1657 | (to-list . "info-gnu-emacs@gnu.org")) | |
cb4015f6 | 1658 | ("l\\.emacs-orgmode" |
41d290a2 | 1659 | (to-address . "emacs-orgmode@gnu.org") |
778202b8 AB |
1660 | (to-list . "emacs-orgmode@gnu.org") |
1661 | (list-identifier . "\\[O\\]")) | |
cb4015f6 | 1662 | ("l\\.emacs-tangents" |
40b9eac1 AB |
1663 | (to-address . "emacs-tangents@gnu.org") |
1664 | (to-list . "emacs-tangents@gnu.org")) | |
cb4015f6 | 1665 | ("l\\.emacsconf-discuss" |
41d290a2 AB |
1666 | (to-address . "emacsconf-discuss@gnu.org") |
1667 | (to-list . "emacsconf-discuss@gnu.org")) | |
cb4015f6 | 1668 | ("l\\.emacsconf-register" |
690a977d AB |
1669 | (to-address . "emacsconf-register@gnu.org") |
1670 | (to-list . "emacsconf-register@gnu.org")) | |
cb4015f6 | 1671 | ("l\\.emacsconf-submit" |
690a977d AB |
1672 | (to-address . "emacsconf-submit@gnu.org") |
1673 | (to-list . "emacsconf-submit@gnu.org")) | |
cb4015f6 | 1674 | ("l\\.fencepost-users" |
41d290a2 | 1675 | (to-address . "fencepost-users@gnu.org") |
778202b8 AB |
1676 | (to-list . "fencepost-users@gnu.org") |
1677 | (list-identifier . "\\[Fencepost-users\\]")) | |
e7a169d1 AB |
1678 | ("l\\.gnewsense-art" |
1679 | (to-address . "gnewsense-art@nongnu.org") | |
1680 | (to-list . "gnewsense-art@nongnu.org") | |
1681 | (list-identifier . "\\[gNewSense-art\\]")) | |
1682 | ("l\\.gnewsense-dev" | |
1683 | (to-address . "gnewsense-dev@nongnu.org") | |
1684 | (to-list . "gnewsense-dev@nongnu.org") | |
1685 | (list-identifier . "\\[Gnewsense-dev\\]")) | |
7f3d862f | 1686 | ("l\\.gnewsense-users" |
e7a169d1 AB |
1687 | (to-address . "gnewsense-users@nongnu.org") |
1688 | (to-list . "gnewsense-users@nongnu.org") | |
1689 | (list-identifier . "\\[gNewSense-users\\]")) | |
cb4015f6 | 1690 | ("l\\.gnunet-developers" |
41d290a2 | 1691 | (to-address . "gnunet-developers@gnu.org") |
778202b8 AB |
1692 | (to-list . "gnunet-developers@gnu.org") |
1693 | (list-identifier . "\\[GNUnet-developers\\]")) | |
cb4015f6 | 1694 | ("l\\.help-gnunet" |
74fd778e AB |
1695 | (to-address . "help-gnunet@gnu.org") |
1696 | (to-list . "help-gnunet@gnu.org") | |
1697 | (list-identifier . "\\[Help-gnunet\\]")) | |
cb4015f6 | 1698 | ("l\\.bug-gnuzilla" |
74fd778e AB |
1699 | (to-address . "bug-gnuzilla@gnu.org") |
1700 | (to-list . "bug-gnuzilla@gnu.org") | |
1701 | (list-identifier . "\\[Bug-gnuzilla\\]")) | |
cb4015f6 | 1702 | ("l\\.gnuzilla-dev" |
74fd778e AB |
1703 | (to-address . "gnuzilla-dev@gnu.org") |
1704 | (to-list . "gnuzilla-dev@gnu.org") | |
1705 | (list-identifier . "\\[Gnuzilla-dev\\]")) | |
cb4015f6 | 1706 | ("l\\.guile-devel" |
41d290a2 AB |
1707 | (to-address . "guile-devel@gnu.org") |
1708 | (to-list . "guile-devel@gnu.org")) | |
cb4015f6 | 1709 | ("l\\.guile-user" |
29e42dc1 AB |
1710 | (to-address . "guile-user@gnu.org") |
1711 | (to-list . "guile-user@gnu.org")) | |
cb4015f6 | 1712 | ("l\\.guix-devel" |
41d290a2 AB |
1713 | (to-address . "guix-devel@gnu.org") |
1714 | (to-list . "guix-devel@gnu.org")) | |
cb4015f6 | 1715 | ("l\\.help-guix" |
837a23a5 AB |
1716 | (to-address . "help-guix@gnu.org") |
1717 | (to-list . "help-guix@gnu.org")) | |
cb4015f6 | 1718 | ("l\\.info-guix" |
74fd778e AB |
1719 | (to-address . "info-guix@gnu.org") |
1720 | (to-list . "info-guix@gnu.org")) | |
cb4015f6 | 1721 | ("l\\.savannah-hackers-public" |
6f25cef1 AB |
1722 | (to-address . "savannah-hackers-public@gnu.org") |
1723 | (to-list . "savannah-hackers-public@gnu.org")) | |
cb4015f6 | 1724 | ("l\\.savannah-users" |
6f25cef1 AB |
1725 | (to-address . "savannah-users@gnu.org") |
1726 | (to-list . "savannah-users@gnu.org")) | |
cb4015f6 | 1727 | ("l\\.www-commits" |
74fd778e AB |
1728 | (to-address . "www-commits@gnu.org") |
1729 | (to-list . "www-commits@gnu.org")) | |
cb4015f6 | 1730 | ("l\\.www-discuss" |
74fd778e AB |
1731 | (to-address . "www-discuss@gnu.org") |
1732 | (to-list . "www-discuss@gnu.org")) | |
cb4015f6 | 1733 | ("l\\.haskell-art" |
41d290a2 | 1734 | (to-address . "haskell-art@we.lurk.org") |
778202b8 AB |
1735 | (to-list . "haskell-art@we.lurk.org") |
1736 | (list-identifier . "\\[haskell-art\\]")) | |
cb4015f6 | 1737 | ("l\\.haskell-cafe" |
41d290a2 | 1738 | (to-address . "haskell-cafe@haskell.org") |
778202b8 AB |
1739 | (to-list . "haskell-cafe@haskell.org") |
1740 | (list-identifier . "\\[Haskell-cafe\\]")) | |
74fd778e | 1741 | ("l\\.notmuch" |
41d290a2 AB |
1742 | (to-address . "notmuch@notmuchmail.org") |
1743 | (to-list . "notmuch@notmuchmail.org")) | |
cb4015f6 | 1744 | ("l\\.parabola-dev" |
41d290a2 | 1745 | (to-address . "dev@lists.parabola.nu") |
778202b8 AB |
1746 | (to-list . "dev@lists.parabola.nu") |
1747 | (list-identifier . "\\[Dev\\]")) | |
74fd778e | 1748 | ("l\\.~bandali\\.public-inbox" |
41d290a2 AB |
1749 | (to-address . "~bandali/public-inbox@lists.sr.ht") |
1750 | (to-list . "~bandali/public-inbox@lists.sr.ht")) | |
7c281dfc AB |
1751 | ("l\\.~sircmpwn\\.free-writers-club" |
1752 | (to-address . "~sircmpwn/free-writers-club@lists.sr.ht") | |
1753 | (to-list . "~sircmpwn/free-writers-club@lists.sr.ht")) | |
cb4015f6 | 1754 | ("l\\.~sircmpwn\\.srht-admins" |
41d290a2 AB |
1755 | (to-address . "~sircmpwn/sr.ht-admins@lists.sr.ht") |
1756 | (to-list . "~sircmpwn/sr.ht-admins@lists.sr.ht")) | |
cb4015f6 | 1757 | ("l\\.~sircmpwn\\.srht-announce" |
41d290a2 AB |
1758 | (to-address . "~sircmpwn/sr.ht-announce@lists.sr.ht") |
1759 | (to-list . "~sircmpwn/sr.ht-announce@lists.sr.ht")) | |
cb4015f6 | 1760 | ("l\\.~sircmpwn\\.srht-dev" |
41d290a2 AB |
1761 | (to-address . "~sircmpwn/sr.ht-dev@lists.sr.ht") |
1762 | (to-list . "~sircmpwn/sr.ht-dev@lists.sr.ht")) | |
cb4015f6 | 1763 | ("l\\.~sircmpwn\\.srht-discuss" |
41d290a2 AB |
1764 | (to-address . "~sircmpwn/sr.ht-discuss@lists.sr.ht") |
1765 | (to-list . "~sircmpwn/sr.ht-discuss@lists.sr.ht")) | |
74fd778e AB |
1766 | ("webmasters" |
1767 | (to-address . "webmasters@gnu.org") | |
1768 | (to-list . "webmasters@gnu.org")) | |
41d290a2 AB |
1769 | ("gnu.*" |
1770 | (gcc-self . t)) | |
1771 | ("gnu\\." | |
262483ba AB |
1772 | (subscribed . t)) |
1773 | ("nnimap\\+uw:.*" | |
1774 | (gcc-self . t))) | |
41d290a2 | 1775 | gnus-large-newsgroup 50 |
dca50cf5 | 1776 | gnus-home-directory (b/var "gnus/") |
41d290a2 AB |
1777 | gnus-directory (concat gnus-home-directory "news/") |
1778 | message-directory (concat gnus-home-directory "mail/") | |
1779 | nndraft-directory (concat gnus-home-directory "drafts/") | |
1780 | gnus-save-newsrc-file nil | |
1781 | gnus-read-newsrc-file nil | |
1782 | gnus-interactive-exit nil | |
1783 | gnus-gcc-mark-as-read t) | |
1784 | :config | |
5b10d879 AB |
1785 | (require 'ebdb) |
1786 | (require 'ebdb-mua) | |
1787 | (require 'ebdb-gnus) | |
41d290a2 | 1788 | |
f02d2b28 AB |
1789 | (when (version< emacs-version "27") |
1790 | (add-to-list | |
1791 | 'nnmail-split-abbrev-alist | |
1792 | '(list . "list-id\\|list-post\\|x-mailing-list\\|x-beenthere\\|x-loop") | |
1793 | t)) | |
1794 | ||
29e42dc1 | 1795 | ;; (gnus-registry-initialize) |
7f88c321 | 1796 | |
41d290a2 AB |
1797 | (with-eval-after-load 'recentf |
1798 | (add-to-list 'recentf-exclude gnus-home-directory))) | |
1799 | ||
dca50cf5 | 1800 | (use-package gnus-art |
41d290a2 AB |
1801 | :config |
1802 | (setq | |
7e1cad06 | 1803 | gnus-buttonized-mime-types '("multipart/\\(signed\\|encrypted\\)") |
41d290a2 AB |
1804 | gnus-visible-headers |
1805 | (concat gnus-visible-headers "\\|^List-Id:\\|^X-RT-Originator:\\|^User-Agent:") | |
1806 | gnus-sorted-header-list | |
1807 | '("^From:" "^Subject:" "^Summary:" "^Keywords:" | |
1808 | "^Followup-To:" "^To:" "^Cc:" "X-RT-Originator" | |
1809 | "^Newsgroups:" "List-Id:" "^Organization:" | |
1810 | "^User-Agent:" "^Date:") | |
1811 | ;; local-lapsed article dates | |
1812 | ;; from https://www.emacswiki.org/emacs/GnusFormatting#toc11 | |
1813 | gnus-article-date-headers '(user-defined) | |
1814 | gnus-article-time-format | |
1815 | (lambda (time) | |
1816 | (let* ((date (format-time-string "%a, %d %b %Y %T %z" time)) | |
1817 | (local (article-make-date-line date 'local)) | |
1818 | (combined-lapsed (article-make-date-line date | |
1819 | 'combined-lapsed)) | |
1820 | (lapsed (progn | |
1821 | (string-match " (.+" combined-lapsed) | |
1822 | (match-string 0 combined-lapsed)))) | |
1823 | (concat local lapsed)))) | |
1824 | (bind-keys | |
1825 | :map gnus-article-mode-map | |
1826 | ("M-L" . org-store-link))) | |
1827 | ||
dca50cf5 | 1828 | (use-package gnus-sum |
41d290a2 | 1829 | :bind (:map gnus-summary-mode-map |
dca50cf5 | 1830 | :prefix-map b/gnus-summary-prefix-map |
41d290a2 AB |
1831 | :prefix "v" |
1832 | ("r" . gnus-summary-reply) | |
1833 | ("w" . gnus-summary-wide-reply) | |
1834 | ("v" . gnus-summary-show-raw-article)) | |
1835 | :config | |
1836 | (bind-keys | |
1837 | :map gnus-summary-mode-map | |
1838 | ("M-L" . org-store-link)) | |
dca50cf5 | 1839 | :hook (gnus-summary-mode . b/no-mouse-autoselect-window)) |
41d290a2 | 1840 | |
dca50cf5 | 1841 | (use-package gnus-msg |
41d290a2 | 1842 | :config |
dca50cf5 | 1843 | (defvar b/signature "Amin Bandali |
ce72f966 AB |
1844 | Free Software Activist | GNU Webmaster & Volunteer |
1845 | GPG: BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103 | |
4ed3a945 | 1846 | https://shemshak.org/~amin") |
dca50cf5 | 1847 | (defvar b/gnu-signature "Amin Bandali |
515674c5 AB |
1848 | Free Software Activist | GNU Webmaster & Volunteer |
1849 | GPG: BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103 | |
0cff213c | 1850 | https://bandali.eu.org") |
dca50cf5 | 1851 | (defvar b/uw-signature "Amin Bandali, MMath Student |
4d19e255 | 1852 | Cheriton School of Computer Science |
e0e5275d | 1853 | University of Waterloo |
0cff213c | 1854 | https://bandali.eu.org") |
dca50cf5 | 1855 | (defvar b/csc-signature "Amin Bandali |
dc12958b AB |
1856 | Systems Committee |
1857 | Computer Science Club, University of Waterloo | |
1858 | https://csclub.uwaterloo.ca/~abandali") | |
41d290a2 AB |
1859 | (setq gnus-posting-styles |
1860 | '((".*" | |
4ed3a945 | 1861 | (address "amin@shemshak.org") |
41d290a2 | 1862 | (body "\nBest,\n") |
dca50cf5 AB |
1863 | (signature b/signature) |
1864 | (eval (setq b/message-cite-say-hi t))) | |
7f88c321 | 1865 | ("nnimap\\+gnu:.*" |
4ed3a945 | 1866 | (address "bandali@gnu.org") |
dca50cf5 | 1867 | (signature b/gnu-signature) |
41d290a2 AB |
1868 | (eval (set (make-local-variable 'message-user-fqdn) "fencepost.gnu.org"))) |
1869 | ((header "subject" "ThankCRM") | |
1870 | (to "webmasters-comment@gnu.org") | |
55495e2f | 1871 | (body "") |
dca50cf5 | 1872 | (eval (setq b/message-cite-say-hi nil))) |
63c1969d | 1873 | ("nnimap\\+uw:.*" |
4d19e255 | 1874 | (address "abandali@uwaterloo.ca") |
dca50cf5 | 1875 | (signature b/uw-signature)) |
262483ba | 1876 | ("nnimap\\+uw:INBOX" |
63c1969d AB |
1877 | (gcc "\"nnimap+uw:Sent Items\"")) |
1878 | ("nnimap\\+csc:.*" | |
41d290a2 | 1879 | (address "abandali@csclub.uwaterloo.ca") |
dca50cf5 | 1880 | (signature b/csc-signature) |
63c1969d | 1881 | (gcc "nnimap+csc:Sent"))))) |
41d290a2 | 1882 | |
dca50cf5 | 1883 | (use-package gnus-topic |
41d290a2 AB |
1884 | :hook (gnus-group-mode . gnus-topic-mode) |
1885 | :config (setq gnus-topic-line-format "%i[ %A: %(%{%n%}%) ]%v\n")) | |
1886 | ||
dca50cf5 | 1887 | (use-package gnus-agent |
41d290a2 AB |
1888 | :config |
1889 | (setq gnus-agent-synchronize-flags 'ask) | |
1890 | :hook (gnus-group-mode . gnus-agent-mode)) | |
1891 | ||
dca50cf5 | 1892 | (use-package gnus-group |
41d290a2 AB |
1893 | :config |
1894 | (setq gnus-permanently-visible-groups "\\(:INBOX$\\|:gnu$\\)")) | |
1895 | ||
082360a8 AB |
1896 | (comment |
1897 | ;; problematic with ebdb's popup, *EBDB-Gnus* | |
dca50cf5 | 1898 | (use-package gnus-win |
082360a8 AB |
1899 | :config |
1900 | (setq gnus-use-full-window nil))) | |
f485f78e | 1901 | |
dca50cf5 | 1902 | (use-package gnus-dired |
348511ef AB |
1903 | :commands gnus-dired-mode |
1904 | :init | |
1905 | (add-hook 'dired-mode-hook 'gnus-dired-mode)) | |
1906 | ||
dca50cf5 | 1907 | (use-package mm-decode |
41d290a2 | 1908 | :config |
7e1cad06 AB |
1909 | (setq mm-discouraged-alternatives '("text/html" "text/richtext") |
1910 | mm-decrypt-option 'known | |
1911 | mm-verify-option 'known)) | |
41d290a2 | 1912 | |
dca50cf5 | 1913 | (use-package sendmail |
41d290a2 | 1914 | :config |
8f8d4c32 | 1915 | (setq sendmail-program (executable-find "msmtp") |
41d290a2 AB |
1916 | ;; message-sendmail-extra-arguments '("-v" "-d") |
1917 | mail-specify-envelope-from t | |
1918 | mail-envelope-from 'header)) | |
1919 | ||
dca50cf5 | 1920 | (use-package message |
41d290a2 AB |
1921 | :config |
1922 | ;; redefine for a simplified In-Reply-To header | |
1923 | ;; (see https://todo.sr.ht/~sircmpwn/lists.sr.ht/67) | |
1924 | (defun message-make-in-reply-to () | |
1925 | "Return the In-Reply-To header for this message." | |
1926 | (when message-reply-headers | |
1927 | (let ((from (mail-header-from message-reply-headers)) | |
1928 | (msg-id (mail-header-id message-reply-headers))) | |
1929 | (when from | |
1930 | msg-id)))) | |
1931 | ||
dca50cf5 | 1932 | (defconst b/message-cite-style-format "On %Y-%m-%d %l:%M %p, %N wrote:") |
41d290a2 AB |
1933 | (defconst message-cite-style-bandali |
1934 | '((message-cite-function 'message-cite-original) | |
1935 | (message-citation-line-function 'message-insert-formatted-citation-line) | |
1936 | (message-cite-reply-position 'traditional) | |
1937 | (message-yank-prefix "> ") | |
1938 | (message-yank-cited-prefix ">") | |
1939 | (message-yank-empty-prefix ">") | |
1940 | (message-citation-line-format | |
dca50cf5 AB |
1941 | (if b/message-cite-say-hi |
1942 | (concat "Hi %F,\n\n" b/message-cite-style-format) | |
1943 | b/message-cite-style-format))) | |
41d290a2 AB |
1944 | "Citation style based on Mozilla Thunderbird's. Use with message-cite-style.") |
1945 | (setq ;; message-cite-style 'message-cite-style-bandali | |
1946 | message-kill-buffer-on-exit t | |
1947 | message-send-mail-function 'message-send-mail-with-sendmail | |
1948 | message-sendmail-envelope-from 'header | |
1949 | message-subscribed-address-functions | |
1950 | '(gnus-find-subscribed-addresses) | |
1951 | message-dont-reply-to-names | |
4ed3a945 | 1952 | "\\(\\(\\(amin\\|mab\\)@shemshak\\.org\\)\\|\\(amin@bndl\\.org\\)\\|\\(.*@aminb\\.org\\)\\|\\(\\(bandali\\|mab\\|aminb?\\)@gnu\\.org\\)\\|\\(a\\(min\\.\\)?bandali@uwaterloo\\.ca\\)\\|\\(abandali@csclub\\.uwaterloo\\.ca\\)\\)") |
5b10d879 | 1953 | (require 'company-ebdb) |
41d290a2 AB |
1954 | :hook (;; (message-setup . mml-secure-message-sign-pgpmime) |
1955 | (message-mode . flyspell-mode) | |
1956 | (message-mode . (lambda () | |
1957 | ;; (setq fill-column 65 | |
1958 | ;; message-fill-column 65) | |
1959 | (make-local-variable 'company-idle-delay) | |
1960 | (setq company-idle-delay 0.2)))) | |
1961 | ;; :custom-face | |
1962 | ;; (message-header-subject ((t (:foreground "#111" :weight semi-bold)))) | |
1963 | ;; (message-header-to ((t (:foreground "#111" :weight normal)))) | |
1964 | ;; (message-header-cc ((t (:foreground "#333" :weight normal)))) | |
1965 | ) | |
1966 | ||
dca50cf5 | 1967 | (use-package mml |
54209e74 AB |
1968 | :delight " mml") |
1969 | ||
dca50cf5 | 1970 | (use-package mml-sec |
54209e74 AB |
1971 | :custom |
1972 | (mml-secure-openpgp-encrypt-to-self t) | |
1973 | (mml-secure-openpgp-sign-with-sender t)) | |
41d290a2 | 1974 | |
dca50cf5 | 1975 | (use-package footnote |
41d290a2 AB |
1976 | :after message |
1977 | ;; :config | |
1978 | ;; (setq footnote-start-tag "" | |
1979 | ;; footnote-end-tag "" | |
1980 | ;; footnote-style 'unicode) | |
1981 | :bind | |
1982 | (:map message-mode-map | |
dca50cf5 | 1983 | :prefix-map b/footnote-prefix-map |
41d290a2 AB |
1984 | :prefix "C-c f" |
1985 | ("a" . footnote-add-footnote) | |
1986 | ("b" . footnote-back-to-message) | |
1987 | ("c" . footnote-cycle-style) | |
1988 | ("d" . footnote-delete-footnote) | |
1989 | ("g" . footnote-goto-footnote) | |
1990 | ("r" . footnote-renumber-footnotes) | |
1991 | ("s" . footnote-set-style))) | |
1992 | ||
5b10d879 AB |
1993 | (use-package ebdb |
1994 | :after gnus | |
1995 | :bind (:map gnus-group-mode-map ("e" . ebdb)) | |
1996 | :config | |
1997 | (setq ebdb-sources (b/var "ebdb")) | |
1998 | (with-eval-after-load 'swiper | |
1999 | (add-to-list 'swiper-font-lock-exclude 'ebdb-mode t))) | |
41d290a2 | 2000 | |
5b10d879 AB |
2001 | (use-package ebdb-com |
2002 | :after ebdb) | |
41d290a2 | 2003 | |
5b10d879 AB |
2004 | ;; (use-package ebdb-complete |
2005 | ;; :after ebdb | |
2006 | ;; :config | |
2007 | ;; (ebdb-complete-enable)) | |
41d290a2 | 2008 | |
5b10d879 AB |
2009 | (use-package company-ebdb |
2010 | :config | |
2011 | (defun company-ebdb--post-complete (_) nil)) | |
41d290a2 | 2012 | |
5b10d879 AB |
2013 | (use-package ebdb-gnus |
2014 | :after ebdb | |
2015 | :custom | |
2016 | (ebdb-gnus-window-configuration | |
2017 | '(article | |
2018 | (vertical 1.0 | |
2019 | (summary 0.25 point) | |
2020 | (horizontal 1.0 | |
2021 | (article 1.0) | |
2022 | (ebdb-gnus 0.3)))))) | |
2023 | ||
2024 | (use-package ebdb-mua | |
2025 | :after ebdb | |
2026 | ;; :custom (ebdb-mua-pop-up nil) | |
2027 | ) | |
41d290a2 | 2028 | |
5b10d879 AB |
2029 | ;; (use-package ebdb-message |
2030 | ;; :after ebdb) | |
41d290a2 | 2031 | |
5b10d879 AB |
2032 | ;; (use-package ebdb-vcard |
2033 | ;; :after ebdb) | |
41d290a2 | 2034 | |
5b10d879 | 2035 | (use-package message-x) |
41d290a2 | 2036 | |
b57457b2 AB |
2037 | (comment |
2038 | (use-package message-x | |
2039 | :custom | |
2040 | (message-x-completion-alist | |
2041 | (quote | |
2042 | (("\\([rR]esent-\\|[rR]eply-\\)?[tT]o:\\|[bB]?[cC][cC]:" . gnus-harvest-find-address) | |
2043 | ((if | |
2044 | (boundp | |
2045 | (quote message-newgroups-header-regexp)) | |
2046 | message-newgroups-header-regexp message-newsgroups-header-regexp) | |
2047 | . message-expand-group)))))) | |
2048 | ||
2049 | (comment | |
2050 | (use-package gnus-harvest | |
2051 | :commands gnus-harvest-install | |
2052 | :demand t | |
2053 | :config | |
2054 | (if (featurep 'message-x) | |
2055 | (gnus-harvest-install 'message-x) | |
2056 | (gnus-harvest-install)))) | |
2057 | ||
2058 | \f | |
e3e5e846 | 2059 | ;;; IRC (with ERC and ZNC) |
b57457b2 | 2060 | |
dca50cf5 | 2061 | (use-package erc |
96840c88 AB |
2062 | :bind (("C-c a e b" . erc-switch-to-buffer) |
2063 | :map erc-mode-map | |
2064 | ("M-a" . erc-track-switch-buffer)) | |
2065 | :custom | |
96840c88 AB |
2066 | (erc-join-buffer 'bury) |
2067 | (erc-lurker-hide-list '("JOIN" "PART" "QUIT")) | |
2068 | (erc-nick "bandali") | |
4d5a11b3 | 2069 | (erc-prompt "erc>") |
96840c88 AB |
2070 | (erc-rename-buffers t) |
2071 | (erc-server-reconnect-attempts 5) | |
2072 | (erc-server-reconnect-timeout 3) | |
96840c88 AB |
2073 | :config |
2074 | (with-eval-after-load 'ivy | |
2075 | ;; ignore channel buffer names | |
2076 | (add-to-list 'ivy-ignore-buffers "^#")) | |
2077 | (defun erc-cmd-OPME () | |
2078 | "Request chanserv to op me." | |
2079 | (erc-message "PRIVMSG" | |
2080 | (format "chanserv op %s %s" | |
2081 | (erc-default-target) | |
2082 | (erc-current-nick)) nil)) | |
2083 | (defun erc-cmd-DEOPME () | |
2084 | "Deop myself from current channel." | |
2085 | (erc-cmd-DEOP (format "%s" (erc-current-nick)))) | |
2086 | (add-to-list 'erc-modules 'keep-place) | |
2087 | (add-to-list 'erc-modules 'notifications) | |
2088 | (add-to-list 'erc-modules 'spelling) | |
5b10d879 | 2089 | (add-to-list 'erc-modules 'scrolltoplace) |
1c9d04d7 AB |
2090 | (erc-update-modules) |
2091 | ||
2092 | (when (and (version<= "24.4" emacs-version) | |
2093 | (version< emacs-version "27")) | |
2094 | ;; fix erc-lurker bug | |
2095 | ;; patch submitted: https://bugs.gnu.org/36843#10 | |
2096 | ;; TODO: remove when patch is merged and emacs 27 is released | |
2097 | (defvar erc-message-parsed) | |
2098 | (defun erc-display-message (parsed type buffer msg &rest args) | |
2099 | "Display MSG in BUFFER. | |
2100 | ||
2101 | ARGS, PARSED, and TYPE are used to format MSG sensibly. | |
2102 | ||
2103 | See also `erc-format-message' and `erc-display-line'." | |
2104 | (let ((string (if (symbolp msg) | |
2105 | (apply #'erc-format-message msg args) | |
2106 | msg)) | |
2107 | (erc-message-parsed parsed)) | |
2108 | (setq string | |
2109 | (cond | |
2110 | ((null type) | |
2111 | string) | |
2112 | ((listp type) | |
2113 | (mapc (lambda (type) | |
2114 | (setq string | |
2115 | (erc-display-message-highlight type string))) | |
2116 | type) | |
2117 | string) | |
2118 | ((symbolp type) | |
2119 | (erc-display-message-highlight type string)))) | |
2120 | ||
2121 | (if (not (erc-response-p parsed)) | |
2122 | (erc-display-line string buffer) | |
2123 | (unless (erc-hide-current-message-p parsed) | |
2124 | (erc-put-text-property 0 (length string) 'erc-parsed parsed string) | |
2125 | (erc-put-text-property 0 (length string) 'rear-sticky t string) | |
2126 | (when (erc-response.tags parsed) | |
2127 | (erc-put-text-property 0 (length string) 'tags (erc-response.tags parsed) | |
2128 | string)) | |
2129 | (erc-display-line string buffer))))) | |
2130 | ||
2131 | (defun erc-lurker-update-status (_message) | |
2132 | "Update `erc-lurker-state' if necessary. | |
2133 | ||
2134 | This function is called from `erc-insert-pre-hook'. If the | |
2135 | current message is a PRIVMSG, update `erc-lurker-state' to | |
2136 | reflect the fact that its sender has issued a PRIVMSG at the | |
2137 | current time. Otherwise, take no action. | |
2138 | ||
2139 | This function depends on the fact that `erc-display-message' | |
2140 | lexically binds `erc-message-parsed', which is used to check if | |
2141 | the current message is a PRIVMSG and to determine its sender. | |
2142 | See also `erc-lurker-trim-nicks' and `erc-lurker-ignore-chars'. | |
2143 | ||
2144 | In order to limit memory consumption, this function also calls | |
2145 | `erc-lurker-cleanup' once every `erc-lurker-cleanup-interval' | |
2146 | updates of `erc-lurker-state'." | |
2147 | (when (and (boundp 'erc-message-parsed) | |
2148 | (erc-response-p erc-message-parsed)) | |
2149 | (let* ((command (erc-response.command erc-message-parsed)) | |
2150 | (sender | |
2151 | (erc-lurker-maybe-trim | |
2152 | (car (erc-parse-user (erc-response.sender erc-message-parsed))))) | |
2153 | (server | |
2154 | (erc-canonicalize-server-name erc-server-announced-name))) | |
2155 | (when (equal command "PRIVMSG") | |
2156 | (when (>= (cl-incf erc-lurker-cleanup-count) | |
2157 | erc-lurker-cleanup-interval) | |
2158 | (setq erc-lurker-cleanup-count 0) | |
2159 | (erc-lurker-cleanup)) | |
2160 | (unless (gethash server erc-lurker-state) | |
2161 | (puthash server (make-hash-table :test 'equal) erc-lurker-state)) | |
2162 | (puthash sender (current-time) | |
2163 | (gethash server erc-lurker-state)))))))) | |
96840c88 | 2164 | |
dca50cf5 | 2165 | (use-package erc-fill |
e3e5e846 AB |
2166 | :after erc |
2167 | :custom | |
92df6c4f | 2168 | (erc-fill-column 77) |
e3e5e846 AB |
2169 | (erc-fill-function 'erc-fill-static) |
2170 | (erc-fill-static-center 18)) | |
2171 | ||
dca50cf5 | 2172 | (use-package erc-pcomplete |
e3e5e846 AB |
2173 | :after erc |
2174 | :custom | |
2175 | (erc-pcomplete-nick-postfix ",")) | |
2176 | ||
dca50cf5 | 2177 | (use-package erc-track |
e3e5e846 AB |
2178 | :after erc |
2179 | :custom | |
2384d161 | 2180 | (erc-track-enable-keybindings nil) |
e3e5e846 AB |
2181 | (erc-track-exclude-types '("JOIN" "MODE" "NICK" "PART" "QUIT" |
2182 | "324" "329" "332" "333" "353" "477")) | |
2183 | (erc-track-priority-faces-only 'all) | |
2184 | (erc-track-shorten-function nil)) | |
2185 | ||
96840c88 AB |
2186 | (use-package erc-hl-nicks |
2187 | :after erc) | |
2188 | ||
5b10d879 AB |
2189 | (use-package erc-scrolltoplace |
2190 | :after erc) | |
96840c88 | 2191 | |
41d290a2 | 2192 | (use-package znc |
dca50cf5 | 2193 | :load-path "lisp/znc.el/" |
41d290a2 AB |
2194 | :bind (("C-c a e e" . znc-erc) |
2195 | ("C-c a e a" . znc-all)) | |
2196 | :config | |
2197 | (let ((pwd (let ((auth (auth-source-search :host "znca"))) | |
2198 | (cond | |
2199 | ((null auth) (error "Couldn't find znca's authinfo")) | |
2200 | (t (funcall (plist-get (car auth) :secret))))))) | |
2201 | (setq znc-servers | |
cad07800 | 2202 | `(("znc.shemshak.org" 1337 t |
4ed3a945 | 2203 | ((freenode "amin/freenode" ,pwd))) |
cad07800 | 2204 | ("znc.shemshak.org" 1337 t |
4ed3a945 | 2205 | ((moznet "amin/moznet" ,pwd))) |
cad07800 | 2206 | ("znc.shemshak.org" 1337 t |
4ed3a945 | 2207 | ((oftc "amin/oftc" ,pwd))))))) |
41d290a2 | 2208 | |
b57457b2 AB |
2209 | \f |
2210 | ;;; Post initialization | |
2211 | ||
41d290a2 AB |
2212 | (message "Loading %s...done (%.3fs)" user-init-file |
2213 | (float-time (time-subtract (current-time) | |
dca50cf5 | 2214 | b/before-user-init-time))) |
41d290a2 AB |
2215 | |
2216 | ;;; init.el ends here |