Skip to content

Instantly share code, notes, and snippets.

@cerebrate
Created December 12, 2016 15:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cerebrate/5fcd9e9cfda5004d116e3a9eacb83ae5 to your computer and use it in GitHub Desktop.
Save cerebrate/5fcd9e9cfda5004d116e3a9eacb83ae5 to your computer and use it in GitHub Desktop.
(use-package vc
:config
(progn
;; show vc commands being executed
(setq vc-command-messages t)
;; confirm when chasing symlinks in a VC directory
(setq vc-follow-symlinks 'ask)
;; handled back-ends
;; we only use git here
(setq vc-handled-backends '(Git))
;; backups
;; these are configured in settings.el
;; do not also configure them here
;; (setq vc-make-backup-files t)
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment