Add Projectile

This commit is contained in:
Kevin Cotugno 2018-02-17 10:59:14 -08:00
parent 667a317724
commit 86634ab44c

View File

@ -171,15 +171,19 @@ useful for alternating between light and dark themes"
(use-package magit
:ensure t)
(use-package projectile
:ensure t)
(use-package helm
:ensure t
:config
(helm-mode t))
(helm-mode t)
(global-set-key (kbd "M-x") 'helm-M-x)
(global-set-key (kbd "C-x C-f") 'helm-find-files))
(use-package helm-projectile
:ensure t
:config
(evil-leader/set-key "p" 'helm-projectile)
(helm-projectile-on))
(require 'mu4e)