+magit.el 872 B

123456789101112131415161718
  1. ;;; ~/.doom.d/+magit.el -*- lexical-binding: t; -*-
  2. (setq +magit-hub-features t ;; I want the PR/issue stuff too!
  3. +magit-hub-enable-by-default t) ;; And I want it on by default!
  4. (after! magit
  5. (magit-wip-after-save-mode t)
  6. (magit-wip-after-apply-mode t)
  7. (setq magit-save-repository-buffers 'dontask
  8. magit-circleci-token "097bf0dd808ad9103d489844e37cecffdf967837"
  9. magit-repository-directories '(("~/src/" . 3)
  10. ("~/dotfiles/" . 0))
  11. magit-popup-display-buffer-action nil ;; Not sure why this is here, wonder what it does
  12. magit-display-file-buffer-function #'switch-to-buffer-other-window
  13. magithub-clone-default-directory "~/src" ;; I want my stuff to clone to ~/projects
  14. magithub-preferred-remote-method 'ssh_url)) ;; HTTPS cloning is awful, i authenticate with ssh keys.