diff options
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/my-git.el (renamed from emacs/custom/fcuny-git.el) | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/emacs/custom/fcuny-git.el b/emacs/custom/my-git.el index 83a477d..eb00113 100644 --- a/emacs/custom/fcuny-git.el +++ b/emacs/custom/my-git.el @@ -1,8 +1,6 @@ -;;; fcuny-git --- configures git for emacs +;;; my-git --- configures git for emacs ;;; Commentary: ;;; Code: -(require 'fcuny-defuns) -(require 'fcuny-vars) (require 'use-package) (use-package git-modes @@ -32,11 +30,11 @@ (use-package git-commit :ensure t :after magit - :hook (git-commit-mode . fcuny/git-commit-auto-fill) + :hook (git-commit-mode . my/git-commit-auto-fill) :custom (git-commit-summary-max-length 50) :preface - (defun fcuny/git-commit-auto-fill () + (defun my/git-commit-auto-fill () "Ensures that the commit body does not exceed 72 characters." (setq-local fill-column 72) (setq-local comment-auto-fill-only-comments nil))) @@ -49,5 +47,5 @@ :custom (git-link-open-in-browser 't)) -(provide 'fcuny-git) -;;; fcuny-git.el ends here +(provide 'my-git) +;;; my-git.el ends here |