diff options
author | Case Duckworth | 2020-11-01 00:20:23 -0500 |
---|---|---|
committer | Case Duckworth | 2020-11-01 00:20:23 -0500 |
commit | e594072e9c96fdb61a6a5e90f8e829bf743f2791 (patch) | |
tree | 95586a20a645ca6cfa0c36288c71ab81b64abe63 | |
parent | Add visual-regexp (diff) | |
download | emacs-e594072e9c96fdb61a6a5e90f8e829bf743f2791.tar.gz emacs-e594072e9c96fdb61a6a5e90f8e829bf743f2791.zip |
Remove format-all-mode in favor of a more modular approach
I'm using packages based on purcell's reformatter.el.
-rw-r--r-- | config.org | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/config.org b/config.org index ae3f50b..3de1654 100644 --- a/config.org +++ b/config.org | |||
@@ -521,14 +521,9 @@ I was using company, but I think it might've been causing issues with ~awk-mode~ | |||
521 | :custom | 521 | :custom |
522 | (forge-owned-accounts '(("duckwork")))) | 522 | (forge-owned-accounts '(("duckwork")))) |
523 | #+END_SRC | 523 | #+END_SRC |
524 | ** Code formatting and display | 524 | ** Code display |
525 | #+BEGIN_SRC emacs-lisp | 525 | #+BEGIN_SRC emacs-lisp |
526 | (use-package format-all | ||
527 | :hook | ||
528 | (prog-mode . format-all-mode)) | ||
529 | |||
530 | (add-hook 'prog-mode-hook #'prettify-symbols-mode) | 526 | (add-hook 'prog-mode-hook #'prettify-symbols-mode) |
531 | |||
532 | #+END_SRC | 527 | #+END_SRC |
533 | *** Parentheses | 528 | *** Parentheses |
534 | #+BEGIN_SRC emacs-lisp | 529 | #+BEGIN_SRC emacs-lisp |