diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-02 18:54:26 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-02 18:54:26 -0800 |
commit | 8cf1a05f8726a78836bfb5ed0696614193cad6f7 (patch) | |
tree | caa0cbb02f50dd7563c0b4219d2001a906843a47 /emacs/custom | |
parent | remove non-emacs configuration (diff) | |
download | emacs.d-8cf1a05f8726a78836bfb5ed0696614193cad6f7.tar.gz |
git: ensure proper mode are used
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-git.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs/custom/fcuny-git.el b/emacs/custom/fcuny-git.el index eac237c..1e15d32 100644 --- a/emacs/custom/fcuny-git.el +++ b/emacs/custom/fcuny-git.el @@ -2,12 +2,16 @@ (require 'fcuny-vars) (use-package gitconfig-mode + :mode ((".gitconfig" . gitconfig-mode) + (".gitmodules" . gitconfig-mode)) :ensure t) (use-package gitattributes-mode + :mode ((".gitattributes" . gitattributes-mode)) :ensure t) (use-package gitignore-mode + :mode ((".gitignore" . gitignore-mode)) :ensure t) (use-package magit |