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