diff options
author | Alan Pearce | 2017-06-07 17:16:12 +0200 |
---|---|---|
committer | Alan Pearce | 2017-06-07 17:16:12 +0200 |
commit | 272f3c8e6e368ac5abccc4a54ddbfc6b1de85f89 (patch) | |
tree | e0b6c897f6c3a065d9901182cc212259412ddd40 /emacs/.emacs.d/init.org | |
parent | 092cf6177b2214d9cd3df63a8398366f6ac7a531 (diff) | |
download | nixfiles-272f3c8e6e368ac5abccc4a54ddbfc6b1de85f89.tar.lz nixfiles-272f3c8e6e368ac5abccc4a54ddbfc6b1de85f89.tar.zst nixfiles-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/.emacs.d/init.org')
-rw-r--r-- | emacs/.emacs.d/init.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 124fa15a..745bba8a 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) |