Emacs: Add QML mode.

This commit is contained in:
tastytea 2020-02-23 22:02:54 +01:00
parent f15ae528bc
commit 4152aba0cc
1 changed files with 16 additions and 5 deletions

View File

@ -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)
)
;; <https://github.com/cute-jumper/company-qml/issues/7>
;; ;; 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