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