diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2019-12-23 10:46:18 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2019-12-23 10:46:18 +0000 |
commit | 86c99bf9923cc2af4e132f22a89a8664b54454dd (patch) | |
tree | 1b78cec94b59b383e4fdd1762625a5ef9b80e23e | |
parent | 69c2e0d2e526588f842ac8d0e30b11f1c42a1c32 (diff) |
Remapped M-x to C-x C-m and C-c C-m based on Steve Yegge article
-rw-r--r-- | init.el | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -53,6 +53,11 @@ (setq column-number-mode t) (setq apropos-do-all t) + +;; remap M-x to something else +(global-set-key "\C-x\C-m" 'execute-extended-command) +(global-set-key "\C-c\C-m" 'execute-extended-command) + ;; recentf (use-package recentf :config |