diff options
author | Franck Cuny <franckcuny@gmail.com> | 2015-11-15 07:54:51 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2015-11-15 07:54:51 -0800 |
commit | 74a571710d005cedfa43614a4606c979702d3c2f (patch) | |
tree | 25f0f1766985ec5573f6ec58048ec64abb8eab41 | |
parent | [emacs] let's see if magit works fine now. (diff) | |
download | emacs.d-74a571710d005cedfa43614a4606c979702d3c2f.tar.gz |
[emacs] enable `helm-projectile`.
Now that I'm using `helm`, let's also install `helm-projectile`.
-rw-r--r-- | emacs.d/inits/50_development.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/emacs.d/inits/50_development.el b/emacs.d/inits/50_development.el index 4356dd3..1e1a243 100644 --- a/emacs.d/inits/50_development.el +++ b/emacs.d/inits/50_development.el @@ -15,6 +15,11 @@ :config (projectile-global-mode)) +(use-package helm-projectile + :ensure t + :config + (helm-projectile-on)) + (use-package company :ensure t :config |