fixed #97 - helm-config should be loaded before projectile

This commit is contained in:
Bozhidar Batsov 2012-03-20 21:45:51 +02:00
parent 181a71d1d2
commit ab0f584abf
2 changed files with 3 additions and 1 deletions

View file

@ -205,6 +205,9 @@
(require 'yasnippet)
(yas/initialize)
;; Helm makes finding stuff in Emacs much simpler
(require 'helm-config)
;; projectile is a project management mode
(require 'projectile)
(projectile-global-mode t)

View file

@ -107,7 +107,6 @@
(global-set-key (kbd "C-=") 'er/expand-region)
(global-set-key (kbd "C-c w") (make-repeatable-command 'er/expand-region))
(require 'helm-config)
(global-set-key (kbd "C-x j") 'helm)
(provide 'prelude-global-keybindings)