From 4152aba0cc09bc25be83d4a397cfa375a7f0e871 Mon Sep 17 00:00:00 2001 From: tastytea Date: Sun, 23 Feb 2020 22:02:54 +0100 Subject: [PATCH] Emacs: Add QML mode. --- init.d/programming/misc.el | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/init.d/programming/misc.el b/init.d/programming/misc.el index acb8e54..51a3d07 100644 --- a/init.d/programming/misc.el +++ b/init.d/programming/misc.el @@ -1,17 +1,28 @@ ;;; misc.el --- Miscellaneous programming languages. -*- lexical-binding: t; -*- -;; Time-stamp: <2020-02-18T17:06:25+0100> +;; Time-stamp: <2020-02-23T22:02:31+0100> ;;; Commentary: -;; Programming languages I don't normally program in and only care about syntax -;; highlighting and indentation. +;; Programming languages that don't warrant a dedicated file. ;;; Code: (use-package go-mode - :mode - ("\\.go$" . go-mode) + :mode ("\\.go$" . go-mode) ) +;; Qt Modeling Language. +(use-package qml-mode + :mode ("\\.qml$" . qml-mode) + ) + +;; +;; ;; Completions for the Qt Modeling Language. +;; (use-package company-qml +;; :after (company) +;; :defines (company-backends) +;; :config (add-to-list 'company-backends 'company-qml) +;; ) + (provide 'programming/misc) ;;; misc.el ends here