Add basic qt support

This commit is contained in:
Nealot 2018-06-01 18:23:35 -04:00
parent 3b1f7c02cc
commit 83232ac9aa
3 changed files with 11 additions and 0 deletions

View file

@ -101,6 +101,7 @@
;plantuml ; diagrams for confusing people more
;purescript ; javascript, but functional
;python ; beautiful is better than ugly
;qt ; the 'cutest' gui framework ever
;rest ; Emacs as a REST client
;ruby ; 1.step do {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"}
;rust ; Fe2O3.unwrap().unwrap().unwrap().unwrap()

View file

@ -0,0 +1,5 @@
;;; lang/qt/config.el -*- lexical-binding: t; -*-
(def-package! qml-mode :mode "\\.qml\\'")
(def-package! qt-pro-mode :mode "\\.pro\\'" "\\.pri\\'")

View file

@ -0,0 +1,5 @@
;; -*- no-byte-compile: t; -*-
;;; lang/qt/packages.el
(package! qml-mode)
(package! qt-pro-mode)