Emacs: Add dockerfile-mode.

This commit is contained in:
tastytea 2020-04-19 13:53:51 +02:00
parent 0de331cb9e
commit 3a95ae6157
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
;;; misc.el --- Miscellaneous file formats. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-04-17T05:21:28+0200>
;; Time-stamp: <2020-04-19T13:53:43+0200>
;;; Commentary:
@ -135,5 +135,9 @@
(use-package nxml
:mode ("\\.qrc" . nxml-mode))
;; Syntax highlighting for docker files.
(use-package dockerfile-mode
:mode ("Dockerfile$" . dockerfile-mode))
(provide 'text/misc)
;;; misc.el ends here