From 284c8327c95bb0c71b111ebf95723a35a478295c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Benencia?= Date: Sun, 23 Jun 2019 11:43:30 -0700 Subject: Add emacs config --- .emacs.local.d/modes/smex.el | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .emacs.local.d/modes/smex.el (limited to '.emacs.local.d/modes/smex.el') diff --git a/.emacs.local.d/modes/smex.el b/.emacs.local.d/modes/smex.el new file mode 100644 index 0000000..d724452 --- /dev/null +++ b/.emacs.local.d/modes/smex.el @@ -0,0 +1,15 @@ +;; Debian packages: elpa-smex +;; Elpa packages: helm-smex + +(require 'smex) ; Not needed if you use package.el +(smex-initialize) ; Can be omitted. This might cause a (minimal) delay + ; when Smex is auto-initialized on its first run. + +(require 'helm-smex) +(global-set-key [remap execute-extended-command] #'helm-smex) +(global-set-key (kbd "M-X") #'helm-smex-major-mode-commands) + +;; (global-set-key (kbd "M-x") 'smex) +;; (global-set-key (kbd "M-X") 'smex-major-mode-commands) +;; This is your old M-x. +(global-set-key (kbd "C-c C-c M-x") 'execute-extended-command) -- cgit v1.2.3