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-01-25 03:49:42 -05:00
|
|
|
:pin "bfe85bc009")
|
|
|
|
(package! cuda-mode :pin "9ae9eacfdb")
|
|
|
|
(package! demangle-mode :pin "06903d731d")
|
|
|
|
(package! disaster :pin "10a785facc")
|
|
|
|
(package! modern-cpp-font-lock :pin "02f104701b")
|
|
|
|
(package! opencl-mode :pin "55cb49c824")
|
2017-02-19 18:57:16 -05:00
|
|
|
|
2020-01-25 03:49:42 -05:00
|
|
|
(when (package! glsl-mode :pin "43d906688a")
|
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-01-25 03:49:42 -05:00
|
|
|
:pin "404cd0694a")))
|
2017-12-26 19:53:48 -05:00
|
|
|
|
2019-02-21 16:08:27 -05:00
|
|
|
(if (featurep! +lsp)
|
2020-03-27 16:23:27 -04:00
|
|
|
(package! ccls :pin "17ec7bb4cf")
|
|
|
|
(when (package! irony :pin "5f75fc0c92")
|
2020-01-25 03:49:42 -05:00
|
|
|
(package! irony-eldoc :pin "0df5831eaa")
|
2020-01-14 03:04:26 -05:00
|
|
|
(when (featurep! :checkers syntax)
|
2020-01-25 03:49:42 -05:00
|
|
|
(package! flycheck-irony :pin "42dbecd4a8"))
|
2019-02-21 16:08:27 -05:00
|
|
|
(when (featurep! :completion company)
|
2020-01-25 03:49:42 -05:00
|
|
|
(package! company-irony :pin "b44711dfce")
|
|
|
|
(package! company-irony-c-headers :pin "72c386aeb0")))
|
2020-03-27 16:23:27 -04:00
|
|
|
(when (package! rtags :pin "d370c09007")
|
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))))
|