Emacs: Add QML mode.

This commit is contained in:
tastytea 2020-02-23 22:02:54 +01:00
parent f15ae528bc
commit 4152aba0cc

View File

@ -1,17 +1,28 @@
;;; misc.el --- Miscellaneous programming languages. -*- lexical-binding: t; -*- ;;; 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: ;;; Commentary:
;; Programming languages I don't normally program in and only care about syntax ;; Programming languages that don't warrant a dedicated file.
;; highlighting and indentation.
;;; Code: ;;; Code:
(use-package go-mode (use-package go-mode
:mode :mode ("\\.go$" . go-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) (provide 'programming/misc)
;;; misc.el ends here ;;; misc.el ends here