diff options
author | noa | 2024-11-11 11:56:40 +0800 |
---|---|---|
committer | noa | 2024-11-11 11:56:40 +0800 |
commit | 8170e72ef090e4e4db034f98da992f233d78bd1b (patch) | |
tree | 1259ca4be1c6d3ab1dc9bfa78c8463385919edb1 /emacs | |
parent | 6645cc491781f9ee49fa80e28ecd3d14849f9844 (diff) |
Disable the garbage collector magic hack
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/emacs/init.el b/emacs/init.el index d8ca11e..ecb65de 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -21,13 +21,11 @@ ;; Use the gcmh to collect garbage when i'm not using emacs (use-package gcmh + :disabled t :ensure t :custom (gcmh-mode t)) -;; Properly distinguish these chords from their ascii legacy -(define-key input-decode-map [?\C-m] [C-m]) - ;;; Modern keybindings ;; A lot of people say that you get used to emacs keybindings over time, and this is true. But i find it hard to maintain two sets of keybindings in my head: those for emacs, and those for everything else. So i think that it's best to make emacs use the same bindings as everything else. For now, we do that with wakib mode. (use-package wakib-keys |