2017-02-19 18:57:16 -05:00
|
|
|
;; -*- no-byte-compile: t; -*-
|
|
|
|
;;; lang/cc/packages.el
|
|
|
|
|
2019-08-13 09:36:05 -07:00
|
|
|
(package! cmake-mode :recipe (:host github :repo "emacsmirror/cmake-mode" :files (:defaults "*")))
|
2017-02-23 00:06:12 -05:00
|
|
|
(package! cuda-mode)
|
|
|
|
(package! demangle-mode)
|
|
|
|
(package! disaster)
|
|
|
|
(package! modern-cpp-font-lock)
|
2017-12-26 18:12:36 -05:00
|
|
|
(package! opencl-mode)
|
2017-02-19 18:57:16 -05:00
|
|
|
|
2018-05-16 00:16:05 +02:00
|
|
|
(when (package! glsl-mode)
|
|
|
|
(when (featurep! :completion company)
|
2019-07-21 15:39:45 +02:00
|
|
|
(package! company-glsl :recipe (:host github :repo "Kaali/company-glsl"))))
|
2017-12-26 19:53:48 -05:00
|
|
|
|
2019-02-21 16:08:27 -05:00
|
|
|
(if (featurep! +lsp)
|
2019-02-25 00:33:40 +10:00
|
|
|
(package! ccls)
|
2019-02-21 16:08:27 -05:00
|
|
|
(when (package! irony)
|
|
|
|
(package! irony-eldoc)
|
2020-01-14 03:04:26 -05:00
|
|
|
(when (featurep! :checkers syntax)
|
2019-02-21 16:08:27 -05:00
|
|
|
(package! flycheck-irony))
|
|
|
|
(when (featurep! :completion company)
|
|
|
|
(package! company-irony)
|
|
|
|
(package! company-irony-c-headers)))
|
|
|
|
(when (package! rtags)
|
|
|
|
(when (featurep! :completion ivy)
|
|
|
|
(package! ivy-rtags))
|
|
|
|
(when (featurep! :completion helm)
|
|
|
|
(package! helm-rtags))))
|