Emacs: Mark more packages as built-in.

This commit is contained in:
tastytea 2020-12-07 20:35:13 +01:00
parent e155efa891
commit ccfeb1e4e4
1 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,6 @@
;;; misc.el --- Miscellaneous file formats. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-12-07T16:26:16+0100>
;; Time-stamp: <2020-12-07T20:34:38+0100>
;;; Commentary:
@ -10,6 +10,7 @@
(require 'text/common)
(use-package conf-mode
:straight (:type built-in)
:mode (("^/etc/conf\\.d/" . conf-mode) ; openrc config.
("^/etc/portage/package\\.use/" . conf-space-mode) ; Portage config.
("^/etc/portage/package\\.accept_keywords/" . conf-space-mode)
@ -175,11 +176,13 @@
:hook (org-mode . (lambda () (require 'ox-asciidoc))))
(use-package sendmail
:straight (:type built-in)
:mode ("/.claws-mail/tmp/tmpmsg\\." . mail-mode) ; claws-mail messages.
:hook (mail-mode . (lambda () (set-fill-column 72))))
;; Open more file extensions in nxml-mode.
(use-package nxml
:straight (:type built-in)
:mode ("\\.qrc" . nxml-mode))
;; Syntax highlighting for docker files.