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 "*"))
|
2021-02-25 10:33:20 -05:00
|
|
|
:pin "d5d77de8c4c69e348b182eeb30222b2f1ba8db7b")
|
2020-12-05 16:37:59 -05:00
|
|
|
(package! cuda-mode :pin "7f593518fd135fc6af994024bcb47986dfa502d2")
|
2020-10-11 23:20:06 -04:00
|
|
|
(package! demangle-mode :pin "aaef0bd77a3ea9ce9132e9a53ac021b0f5d33e12")
|
2020-06-24 20:04:01 -04:00
|
|
|
(package! disaster :pin "10a785facc60d89d78e0d5177985ab1af1741bb4")
|
2021-05-18 19:30:01 -04:00
|
|
|
(package! modern-cpp-font-lock :pin "43c6b68ff58fccdf9deef11674a172e4eaa8455c")
|
2020-12-05 16:37:59 -05:00
|
|
|
(package! opencl-mode :pin "15091eff92c33ee0d1ece40eb99299ef79fee92d")
|
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"))
|
2021-03-27 15:49:04 -04:00
|
|
|
(when (package! irony :pin "ec6dce7ee16ffaa9a735204534aa4aa074d14487")
|
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")))
|
2021-07-11 12:24:42 -04:00
|
|
|
(when (package! rtags :pin "65113e2a137baa9f85dc2157b893291470788dc4")
|
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))))
|