(require 'fcuny-defuns) (use-package gitconfig-mode :ensure t :defer 5) (use-package magit :ensure t :commands magit-status :after (flyspell) :hook ((magit-mode . hl-line-mode)) :bind (("C-x g s" . magit-status)) :custom (git-commit-summary-max-length 50) (fill-column 72) (magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1) (magit-completing-read-function 'ivy-completing-read) :config (when (fcuny/check-work-machine-p) (setq magit-git-executable "/opt/twitter_mde/bin/git"))) (provide 'fcuny-git)