2017-02-19 18:57:16 -05:00
|
|
|
;; -*- no-byte-compile: t; -*-
|
|
|
|
;;; lang/cc/packages.el
|
|
|
|
|
2020-01-14 22:32:11 -05:00
|
|
|
(package! cmake-mode
|
|
|
|
:recipe (:host github :repo "emacsmirror/cmake-mode" :files (:defaults "*"))
|
2020-08-19 15:25:47 -04:00
|
|
|
:pin "e58c41145a879f0314b2821eada7fd0dc898b6b6")
|
2020-06-24 20:04:01 -04:00
|
|
|
(package! cuda-mode :pin "9ae9eacfdba3559b5456342d0d03296290df8ff5")
|
|
|
|
(package! demangle-mode :pin "697c1dbde93f164eac7ea0dc530d7e8b799272d6")
|
|
|
|
(package! disaster :pin "10a785facc60d89d78e0d5177985ab1af1741bb4")
|
|
|
|
(package! modern-cpp-font-lock :pin "865955d0035382a17a7f03add0d00d0bd812b103")
|
|
|
|
(package! opencl-mode :pin "55cb49c8243e6420961d719faced035bc547c1ef")
|
2017-02-19 18:57:16 -05:00
|
|
|
|
2020-06-24 20:04:01 -04:00
|
|
|
(when (package! glsl-mode :pin "b07112016436d9634cd4ef747f9af6b01366d136")
|
2018-05-16 00:16:05 +02:00
|
|
|
(when (featurep! :completion company)
|
2020-01-14 22:32:11 -05:00
|
|
|
(package! company-glsl
|
|
|
|
:recipe (:host github :repo "Kaali/company-glsl")
|
2020-06-24 20:04:01 -04:00
|
|
|
:pin "404cd0694ab34971f9c01eb22126cd2e7d3f9dc4")))
|
2017-12-26 19:53:48 -05:00
|
|
|
|
2019-02-21 16:08:27 -05:00
|
|
|
(if (featurep! +lsp)
|
2020-05-01 11:01:11 +02:00
|
|
|
(unless (featurep! :tools lsp +eglot)
|
|
|
|
;; ccls package is necessary only for lsp-mode.
|
2020-08-22 15:59:01 -04:00
|
|
|
(package! ccls :pin "675a5704c14a27931e835a431beea3631d92e8e6"))
|
2020-08-19 15:25:47 -04:00
|
|
|
(when (package! irony :pin "1e1aabaa686a08767ab33e5cd43ce8f0ebf8d020")
|
2020-06-24 20:04:01 -04:00
|
|
|
(package! irony-eldoc :pin "73e79a89fad982a2ba072f2fcc1b4e41f0aa2978")
|
2020-01-14 03:04:26 -05:00
|
|
|
(when (featurep! :checkers syntax)
|
2020-06-24 20:04:01 -04:00
|
|
|
(package! flycheck-irony :pin "42dbecd4a865cabeb301193bb4d660e26ae3befe"))
|
2019-02-21 16:08:27 -05:00
|
|
|
(when (featurep! :completion company)
|
2020-06-24 20:04:01 -04:00
|
|
|
(package! company-irony :pin "b44711dfce445610c1ffaec4951c6ff3882b216a")
|
|
|
|
(package! company-irony-c-headers :pin "72c386aeb079fb261d9ec02e39211272f76bbd97")))
|
2020-08-19 15:25:47 -04:00
|
|
|
(when (package! rtags :pin "b57b36039f6411f23009c4ec0315ca5a7adb6824")
|
2019-02-21 16:08:27 -05:00
|
|
|
(when (featurep! :completion ivy)
|
2020-03-27 16:23:27 -04:00
|
|
|
(package! ivy-rtags))
|
2019-02-21 16:08:27 -05:00
|
|
|
(when (featurep! :completion helm)
|
2020-03-27 16:23:27 -04:00
|
|
|
(package! helm-rtags))))
|