Files
.emacs.d/modules/languages/siren-gitignore.el
Jim Myhrberg 87a86191db Majorly re-organize modules
- Split large modules into smaller parts (e.g. siren-text-manipulation)
- Organize modules into high level groups:
  - completion
  - core
  - editor
  - languages
  - linting
  - misc
  - navigation
  - projects
  - spelling
  - text-editing
  - version-control
  - windows
  - workspaces
2018-05-20 17:31:11 +01:00

18 lines
382 B
EmacsLisp

;;; 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