aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schneider <qsx@qsx.re>2019-03-31 19:59:40 +0200
committerThomas Schneider <qsx@qsx.re>2019-03-31 19:59:40 +0200
commitd11c3e213e348eec93f9828c9524a4004b4d183f (patch)
tree70bd95c81257b54b45f90b72e44b7252e9c0c012
parentbdc4806b47aa2d1c4e12b31fea32e9c3e0551e46 (diff)
Emacs: Use helm-projectile
-rw-r--r--dot.emacs.d/init.el5
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))