summary refs log tree commit diff stats
path: root/lisp
diff options
context:
space:
mode:
authorCase Duckworth2021-09-29 17:21:50 -0500
committerCase Duckworth2021-09-29 17:21:50 -0500
commit0165cc6bfc9905b5806ba879e7a7cdf0233d4351 (patch)
treeea8209452870ddff27aeca9dabb16abe7d795c9b /lisp
parentAdd :load-after setup form (diff)
downloademacs-0165cc6bfc9905b5806ba879e7a7cdf0233d4351.tar.gz
emacs-0165cc6bfc9905b5806ba879e7a7cdf0233d4351.zip
Change apheleia stupid indenting
Diffstat (limited to 'lisp')
-rw-r--r--lisp/acdw-apheleia.el25
1 files changed, 25 insertions, 0 deletions
diff --git a/lisp/acdw-apheleia.el b/lisp/acdw-apheleia.el new file mode 100644 index 0000000..1b646ef --- /dev/null +++ b/lisp/acdw-apheleia.el
@@ -0,0 +1,25 @@
1;;; acdw-apheleia.el --- bespoke apheleia junk -*- lexical-binding: t -*-
2
3;;; Commentary:
4
5;;; Code:
6
7(require 'apheleia)
8
9(defcustom apheleia-stupid-modes '(makefile-mode
10 org-mode)
11 "List of stupid modes to not use `apheleia-global-mode' on."
12 :type '(repeat function)
13 :group 'apheleia)
14
15(defun apheleia-dumb-auto-format ()
16 "Format a buffer dumbly."
17 ;; If there's no apheleia formatter for the mode, just indent the
18 ;; buffer.
19 (unless (or (apply #'derived-mode-p apheleia-stupid-modes)
20 (and (fboundp 'apheleia--get-formatter-command)
21 (apheleia--get-formatter-command)))
22 (indent-region (point-min) (point-max))))
23
24(provide 'acdw-apheleia)
25;;; acdw-apheleia ends here