diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-23 09:46:33 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-23 09:46:33 -0700 |
commit | ccd53a221194093fc7f8228725584c5b0320aeb8 (patch) | |
tree | 529064cfa3290b337d6303f36dc8b38e77f10935 | |
parent | rename fcuny-text to my-text (diff) | |
download | emacs.d-ccd53a221194093fc7f8228725584c5b0320aeb8.tar.gz |
rename fcuny-git to my-git
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/my-git.el (renamed from emacs/custom/fcuny-git.el) | 12 | ||||
-rw-r--r-- | emacs/init.el | 2 |
2 files changed, 6 insertions, 8 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 diff --git a/emacs/init.el b/emacs/init.el index cd4d7bc..d77ed96 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -43,7 +43,7 @@ (require 'my-navigation (expand-file-name "custom/my-navigation" user-emacs-directory)) (require 'my-edit (expand-file-name "custom/my-edit" user-emacs-directory)) (require 'my-text (expand-file-name "custom/my-text" user-emacs-directory)) -(require 'fcuny-git (expand-file-name "custom/fcuny-git" user-emacs-directory)) +(require 'my-git (expand-file-name "custom/my-git" user-emacs-directory)) (require 'fcuny-org (expand-file-name "custom/fcuny-org" user-emacs-directory)) (require 'fcuny-conf (expand-file-name "custom/fcuny-conf" user-emacs-directory)) (require 'fcuny-prog (expand-file-name "custom/fcuny-prog" user-emacs-directory)) |