diff options
author | Case Duckworth | 2021-04-22 17:58:43 -0500 |
---|---|---|
committer | Case Duckworth | 2021-04-22 17:58:43 -0500 |
commit | c29078259d95c77fcab112bcb62a90d2bb139e51 (patch) | |
tree | cb3a38c7480f07a0ce4aef7e1e3929a675c58dfa | |
parent | Add <F12> bind to toggle eshell (diff) | |
download | emacs-c29078259d95c77fcab112bcb62a90d2bb139e51.tar.gz emacs-c29078259d95c77fcab112bcb62a90d2bb139e51.zip |
Get rid of a dumb alias that slows down Emacs
See the comment in the commit.
-rw-r--r-- | early-init.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/early-init.el b/early-init.el index 412a2c9..8949e20 100644 --- a/early-init.el +++ b/early-init.el | |||
@@ -131,6 +131,12 @@ | |||
131 | (eval-print-last-sexp))) | 131 | (eval-print-last-sexp))) |
132 | (load bootstrap-file nil 'nomessage)) | 132 | (load bootstrap-file nil 'nomessage)) |
133 | 133 | ||
134 | ;; Appendix. Get rid of a dumb alias. | ||
135 | ;; straight-ಠ_ಠ-mode really slows down all minibuffer completion functions. | ||
136 | ;; Since it's a (rarely-used, even) alias anyway, I just define it back to nil. | ||
137 | ;; By the way, the alias is `straight-package-neutering-mode'. | ||
138 | (defalias 'straight-ಠ_ಠ-mode nil) | ||
139 | |||
134 | 140 | ||
135 | ;;; Message startup time for profiling | 141 | ;;; Message startup time for profiling |
136 | ;; This just redefines the Emacs function | 142 | ;; This just redefines the Emacs function |