diff options
| author | Thomas Schneider <qsx@qsx.re> | 2019-03-31 19:59:40 +0200 |
|---|---|---|
| committer | Thomas Schneider <qsx@qsx.re> | 2019-03-31 19:59:40 +0200 |
| commit | d11c3e213e348eec93f9828c9524a4004b4d183f (patch) | |
| tree | 70bd95c81257b54b45f90b72e44b7252e9c0c012 /dot.emacs.d | |
| parent | bdc4806b47aa2d1c4e12b31fea32e9c3e0551e46 (diff) | |
Emacs: Use helm-projectile
Diffstat (limited to 'dot.emacs.d')
| -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)) |
