diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2020-03-19 17:34:38 -0700 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2020-03-19 17:34:38 -0700 |
commit | 585a80501df61f305c16e4ecf75adf919fc51850 (patch) | |
tree | bd6a6928310e12f948e603e7ad7aac24bf100716 /emacs | |
parent | doc: switch to org-mode instead of markdown (diff) | |
download | emacs.d-585a80501df61f305c16e4ecf75adf919fc51850.tar.gz |
emacs: add a few more modes for git support
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-git.el | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/emacs.d/custom/fcuny-git.el b/emacs.d/custom/fcuny-git.el index be4707b..f9e985d 100644 --- a/emacs.d/custom/fcuny-git.el +++ b/emacs.d/custom/fcuny-git.el @@ -1,8 +1,13 @@ (require 'fcuny-defuns) (use-package gitconfig-mode - :ensure t - :defer 5) + :ensure t) + +(use-package gitattributes-mode + :ensure t) + +(use-package gitignore-mode + :ensure t) (use-package magit :ensure t |