diff options
| -rw-r--r-- | dot.emacs.d/init.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el index d960fa5..d17ceea 100644 --- a/dot.emacs.d/init.el +++ b/dot.emacs.d/init.el @@ -92,6 +92,11 @@ helm-recentf-fuzzy-match t helm-ff-file-name-history-use-recentf t helm-echo-input-in-header-line t)) +(use-package helm-projectile + :config + (setq projectile-completion-system 'helm) + (helm-projectile-on) + :after (projectile helm)) (use-package flycheck :init (global-flycheck-mode)) |
