.emacs.d/init.d/programming/misc.el

31 lines
695 B
EmacsLisp
Raw Normal View History

2019-11-14 12:51:21 +01:00
;;; misc.el --- Miscellaneous programming languages. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-03-18T14:57:26+0100>
2019-11-14 12:51:21 +01:00
;;; Commentary:
2020-02-23 22:02:54 +01:00
;; Programming languages that don't warrant a dedicated file.
2019-11-14 12:51:21 +01:00
;;; Code:
(require 'basics/package-management)
(use-package go-mode
2020-02-23 22:02:54 +01:00
:mode ("\\.go$" . go-mode)
)
2019-11-14 12:51:21 +01:00
2020-02-23 22:02:54 +01:00
;; 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)
;; )
2019-11-14 12:51:21 +01:00
(provide 'programming/misc)
;;; misc.el ends here