Skip to content

Commit

Permalink
Update git modes
Browse files Browse the repository at this point in the history
There's now a single package for all the git-modes
https://github.com/magit/git-modes
  • Loading branch information
mrwacky42 committed Dec 27, 2022
1 parent bde40a7 commit 055d722
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lisp/init-git.el
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
(use-package gist
:ensure))

(use-package gitignore-mode
:ensure)

(use-package gitconfig-mode
(use-package git-modes
:ensure
:config (add-hook 'gitconfig-mode-hook
(lambda () "Tabs are for heathens"
(setq indent-tabs-mode nil
tab-width 4))))
:config
(add-hook 'gitconfig-mode-hook
(lambda () "Tabs are for heathens"
(setq indent-tabs-mode nil
tab-width 4)))
(add-to-list 'auto-mode-alist
(cons "/.dockerignore\\'" 'gitignore-mode)))

;; Though see also vc-annotate's "n" & "p" bindings
(use-package git-messenger
Expand Down

0 comments on commit 055d722

Please sign in to comment.