Fix helm-M-x not loading issue.

This commit is contained in:
Ivan Malison 2014-12-05 15:37:10 -08:00
parent 9a5948c540
commit d4c4a1094b

View File

@ -813,14 +813,16 @@ The current directory is assumed to be the project's root otherwise."
;; File Navigation: helm/projectile/ido ;; File Navigation: helm/projectile/ido
;; ============================================================================= ;; =============================================================================
(use-package helm (use-package helm-config
:ensure t :ensure helm
:bind (("M-y" . helm-show-kill-ring) :bind (("M-y" . helm-show-kill-ring)
("M-x" . helm-M-x) ("M-x" . helm-M-x)
("C-x C-i" . helm-imenu) ("C-x C-i" . helm-imenu)
("C-h a" . helm-apropos)) ("C-h a" . helm-apropos))
:init :init
(progn (progn
(require 'helm)
(helm-mode 1)
(use-package helm-ag :ensure t :defer t)) (use-package helm-ag :ensure t :defer t))
:config :config
(progn (progn
@ -854,6 +856,7 @@ The current directory is assumed to be the project's root otherwise."
(use-package smex (use-package smex
:ensure t :ensure t
;; Using helm-M-x instead
:disabled t :disabled t
:commands smex :commands smex
;; This is here because smex feels like part of ido ;; This is here because smex feels like part of ido