mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Add basic qt support
This commit is contained in:
@ -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()
|
||||
|
5
modules/lang/qt/config.el
Normal file
5
modules/lang/qt/config.el
Normal 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\\'")
|
||||
|
5
modules/lang/qt/packages.el
Normal file
5
modules/lang/qt/packages.el
Normal file
@ -0,0 +1,5 @@
|
||||
;; -*- no-byte-compile: t; -*-
|
||||
;;; lang/qt/packages.el
|
||||
|
||||
(package! qml-mode)
|
||||
(package! qt-pro-mode)
|
Reference in New Issue
Block a user