From 457e02b8f1350b41c7738a520693b26bbda559e2 Mon Sep 17 00:00:00 2001 From: tastytea Date: Sat, 10 Aug 2019 19:44:09 +0200 Subject: [PATCH] Assign conanfile to conf-mode. --- init.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index f66572e..1b267f4 100644 --- a/init.el +++ b/init.el @@ -1,5 +1,5 @@ ;;; init.el --- tastytea's Emacs init file. -;; Time-stamp: <2019-08-09T18:38:44+00:00> +;; Time-stamp: <2019-08-10T17:43:46+00:00> ;;; Commentary: ;; I am using this file with Emacs 26, but most of it will probably work with @@ -950,10 +950,11 @@ With argument, do this that many times." ;;;;;;;;;;;;;;;;;;;; Other file formats ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (use-package conf-mode :mode - ("\\`/etc/conf\\.d/" . conf-mode) ; openrc config files. + ("\\`/etc/conf\\.d/" . conf-mode) ; openrc config files. ("\\`/etc/portage/package\\.use/" . conf-space-mode) ; Portage config. ("\\`/etc/portage/package\\.accept_keywords/" . conf-space-mode) - ("\\.pc\\(\\.in\\)?$" . conf-mode) ; pkg-config files. + ("\\.pc\\(\\.in\\)?$" . conf-mode) ; pkg-config files. + ("conanfile\\.txt$" . conf-mode) ; Conan recipes. ) (use-package adoc-mode