diff options
author | Alan Pearce | 2016-11-11 17:27:49 +0100 |
---|---|---|
committer | Alan Pearce | 2016-11-11 17:27:49 +0100 |
commit | 384e602dfb942d2d6a4871f6449181d44bd0c26b (patch) | |
tree | 5b21685d265f33a7324a32b9a3cf42e38e3d7335 /tag-emacs | |
parent | a4dc91965e3ad4a33683a9859e83067a2441365d (diff) | |
download | dotfiles-384e602dfb942d2d6a4871f6449181d44bd0c26b.tar.lz dotfiles-384e602dfb942d2d6a4871f6449181d44bd0c26b.tar.zst dotfiles-384e602dfb942d2d6a4871f6449181d44bd0c26b.zip |
Emacs: Setup git autofetch
Diffstat (limited to 'tag-emacs')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index ddf5ea6..5e6b995 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -387,6 +387,17 @@ based upon some folder conventions I use. projectile-completion-system 'ivy))) #+END_SRC +*** projectile-git-autofetch + +Automatically fetch repositories I’m working on. + +#+BEGIN_SRC emacs-lisp + (use-package projectile-git-autofetch + :config (progn + (setq projectile-git-autofetch-projects 'open) + (projectile-git-autofetch-mode 1))) +#+END_SRC + ** perspective This package makes buffer-switching inside of projects make sense, by |