doomemacs/modules/lang/cc/packages.el

22 lines
516 B
EmacsLisp
Raw Normal View History

2017-02-20 07:57:16 +08:00
;; -*- no-byte-compile: t; -*-
;;; lang/cc/packages.el
(package! cmake-mode)
(package! cuda-mode)
(package! demangle-mode)
(package! disaster)
(package! glsl-mode)
(package! irony)
(package! irony-eldoc)
(package! opencl-mode)
(package! modern-cpp-font-lock)
2017-02-20 07:57:16 +08:00
(when (featurep! :feature syntax-checker)
(package! flycheck-irony))
2017-02-20 07:57:16 +08:00
(when (featurep! :completion company)
2017-07-06 18:44:03 +08:00
(package! company-glsl :recipe (:fetcher github :repo "Kaali/company-glsl"))
(package! company-irony)
(package! company-irony-c-headers))
2017-03-20 15:47:12 +08:00