summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-git.el
blob: d056896021f65d17d5f287aa7e461516c6a505cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(use-package gitconfig-mode
  :ensure t
  :defer 5)

(use-package magit
  :ensure t
  :after (flyspell)
  :hook ((magit-mode . hl-line-mode))
  :bind (("C-x g s" . magit-status))
  :config
  (setq git-commit-summary-max-length 50)
  (setq fill-column 72))

(provide 'fcuny-git)