summary refs log tree commit diff
path: root/emacs
diff options
context:
space:
mode:
authorFranck Cuny <fcuny@roblox.com>2022-02-03 08:45:05 -0800
committerFranck Cuny <fcuny@roblox.com>2022-02-03 08:45:05 -0800
commitace4ee981f4545ddb91c9e418939d3cce0fd3b1c (patch)
tree6061e373081770d5a7503133240dc65d6cca261f /emacs
parentgit: ensure proper mode are used (diff)
downloademacs.d-ace4ee981f4545ddb91c9e418939d3cce0fd3b1c.tar.gz
magit: pull the proper package
It looks like these packages were moved to a new one named `git-modes'.
Diffstat (limited to 'emacs')
-rw-r--r--emacs/custom/fcuny-git.el21
1 files changed, 9 insertions, 12 deletions
diff --git a/emacs/custom/fcuny-git.el b/emacs/custom/fcuny-git.el
index 1e15d32..855dd79 100644
--- a/emacs/custom/fcuny-git.el
+++ b/emacs/custom/fcuny-git.el
@@ -1,18 +1,15 @@
 (require 'fcuny-defuns)
 (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 git-modes
+  :ensure t
+  :mode
+  ("/\\.gitconfig\\'"    . gitconfig-mode)
+  ("/\\.gitmodules\\'"   . gitconfig-mode)
+  ("/\\.git/config\\'"   . gitconfig-mode)
+  ("/\\.gitignore\\'"    . gitignore-mode)
+  ("/.dockerignore\\'"   . gitignore-mode)
+  ("/\\.gitattributes//" . gitattributes-mode))
 
 (use-package magit
   :ensure t