mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
fix(lang): gitconfig-mode and gitignore-mode have been replaced with git-modes
This commit is contained in:
13
modules/languages/siren-git-modes.el
Normal file
13
modules/languages/siren-git-modes.el
Normal file
@@ -0,0 +1,13 @@
|
||||
;;; siren-git-modes.el --- jimeh's Emacs Siren: git-modes-mode configuration.
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
;; Basic configuration for git-modes-mode.
|
||||
|
||||
;;; Code:
|
||||
|
||||
(use-package git-modes
|
||||
:defer t)
|
||||
|
||||
(provide 'siren-git-modes)
|
||||
;;; siren-git-modes.el ends here
|
||||
@@ -1,17 +0,0 @@
|
||||
;;; siren-gitconfig.el --- jimeh's Emacs Siren: gitconfig-mode configuration.
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
;; Basic configuration for gitconfig-mode.
|
||||
|
||||
;;; Code:
|
||||
|
||||
(use-package gitconfig-mode
|
||||
:mode "\\.gitconfig\\'" "gitconfig\\'" "\\.git/config\\'"
|
||||
:hook (gitconfig-mode . siren-gitconfig-mode-setup)
|
||||
|
||||
:init
|
||||
(defun siren-gitconfig-mode-setup ()))
|
||||
|
||||
(provide 'siren-gitconfig)
|
||||
;;; siren-gitconfig.el ends here
|
||||
@@ -1,17 +0,0 @@
|
||||
;;; siren-gitignore.el --- jimeh's Emacs Siren: gitignore-mode configuration.
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
;; Basic configuration for gitignore-mode.
|
||||
|
||||
;;; Code:
|
||||
|
||||
(use-package gitignore-mode
|
||||
:mode "\\.gitignore" "gitignore\\'"
|
||||
:hook (gitignore-mode . siren-gitignore-mode-setup)
|
||||
|
||||
:init
|
||||
(defun siren-gitignore-mode-setup ()))
|
||||
|
||||
(provide 'siren-gitignore)
|
||||
;;; siren-gitignore.el ends here
|
||||
Reference in New Issue
Block a user