summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2017-06-07 17:16:12 +0200
committerAlan Pearce2017-06-07 17:16:12 +0200
commit272f3c8e6e368ac5abccc4a54ddbfc6b1de85f89 (patch)
treee0b6c897f6c3a065d9901182cc212259412ddd40 /emacs
parent092cf6177b2214d9cd3df63a8398366f6ac7a531 (diff)
downloaddotfiles-272f3c8e6e368ac5abccc4a54ddbfc6b1de85f89.tar.lz
dotfiles-272f3c8e6e368ac5abccc4a54ddbfc6b1de85f89.tar.zst
dotfiles-272f3c8e6e368ac5abccc4a54ddbfc6b1de85f89.zip
Emacs: Fix projectile initialisation
projectile-mode does not enable projectile in all buffers.
projectile-global-mode is deprecated as a _command_.  It is necessary
to use the function for the global behaviour.
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index 124fa15..745bba8 100644
--- a/emacs/.emacs.d/init.org
+++ b/emacs/.emacs.d/init.org
@@ -544,7 +544,7 @@ ones.
   :demand t
   :diminish projectile-mode
   :config (progn
-            (projectile-mode +1)
+            (projectile-global-mode +1)
             (add-to-list 'projectile-globally-ignored-directories ".stversions")
 
             (defun yarn-install (&optional arg)