aboutsummaryrefslogtreecommitdiff
path: root/dot.emacs.d/init.el
diff options
context:
space:
mode:
authorThomas Schneider <qsx@qsx.re>2019-06-27 14:50:38 +0200
committerThomas Schneider <qsx@qsx.re>2019-06-27 14:50:38 +0200
commit6baad656d266242adaa28466c037c46baf1feae8 (patch)
tree875c819b9b6cbe8ffed9dffdef93152fffdaa7db /dot.emacs.d/init.el
parentd7afc38756cf73271de0d08d07f59b6e7065b7bf (diff)
Emacs: Load Projectile immediately
Diffstat (limited to 'dot.emacs.d/init.el')
-rw-r--r--dot.emacs.d/init.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el
index 750cf2e..1bdd80b 100644
--- a/dot.emacs.d/init.el
+++ b/dot.emacs.d/init.el
@@ -74,7 +74,8 @@
(use-package projectile
:config (projectile-mode 1)
- :bind-keymap ("C-c p" . projectile-command-map))
+ :bind-keymap ("C-c p" . projectile-command-map)
+ :defer nil)
(use-package company
:bind (:map company-mode-map