Andersbakken/rtags@cdff9b47fc -> Andersbakken/rtags@db39790fda Sarcasm/irony-mode@ec6dce7ee1 -> Sarcasm/irony-mode@5063d6b16d ananthakumaran/tide@296c0e0e3a -> ananthakumaran/tide@28137ed904 brianc/jade-mode@111460b056 -> brianc/jade-mode@1ad7c51f3c cython/cython@aea4e6b84b -> cython/cython@5b325c9860 dgutov/robe@fd972e912d -> dgutov/robe@11207bd549 dominikh/go-mode.el@34974346d1 -> dominikh/go-mode.el@32cbd78c0a emacs-lsp/lsp-pyright@72fd57643d -> emacs-lsp/lsp-pyright@d428dbcf18 emacs-typescript/typescript.el@2a58631230 -> emacs-typescript/typescript.el@e824162051 galaunay/poetry.el@d5163fe065 -> galaunay/poetry.el@5b9ef569d6 hlissner/emacs-counsel-css@f7647b4195 -> hlissner/emacs-counsel-css@8e9c0515fc hlissner/emacs-pug-mode@d08090485e -> hlissner/emacs-pug-mode@73f8c2f95e jorgenschaefer/pyvenv@045ff9476d -> jorgenschaefer/pyvenv@31ea715f21 necaris/conda.el@4de6eccda5 -> necaris/conda.el@7a34e06931 pythonic-emacs/anaconda-mode@4f367c768a -> pythonic-emacs/anaconda-mode@cbea0fb318 wbolster/emacs-python-pytest@31ae5e0e68 -> wbolster/emacs-python-pytest@b603c5c7f2
34 lines
1.7 KiB
EmacsLisp
34 lines
1.7 KiB
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/cc/packages.el
|
|
|
|
(package! cmake-mode
|
|
:recipe (:host github :repo "emacsmirror/cmake-mode" :files (:defaults "*"))
|
|
:pin "d5d77de8c4c69e348b182eeb30222b2f1ba8db7b")
|
|
(package! cuda-mode :pin "7f593518fd135fc6af994024bcb47986dfa502d2")
|
|
(package! demangle-mode :pin "04f545adab066708d6151f13da65aaf519f8ac4e")
|
|
(package! disaster :pin "10a785facc60d89d78e0d5177985ab1af1741bb4")
|
|
(package! modern-cpp-font-lock :pin "43c6b68ff58fccdf9deef11674a172e4eaa8455c")
|
|
(package! opencl-mode :pin "15091eff92c33ee0d1ece40eb99299ef79fee92d")
|
|
|
|
(when (package! glsl-mode :pin "9b2e5f28e489a1f73c4aed734105618ac0dc0c43")
|
|
(when (featurep! :completion company)
|
|
(package! company-glsl
|
|
:recipe (:host github :repo "Kaali/company-glsl")
|
|
:pin "404cd0694ab34971f9c01eb22126cd2e7d3f9dc4")))
|
|
|
|
(if (featurep! +lsp)
|
|
(unless (featurep! :tools lsp +eglot)
|
|
;; ccls package is necessary only for lsp-mode.
|
|
(package! ccls :pin "675a5704c14a27931e835a431beea3631d92e8e6"))
|
|
(when (package! irony :pin "5063d6b16d5d0a444bbc7599caabfdc6b512f70c")
|
|
(package! irony-eldoc :pin "73e79a89fad982a2ba072f2fcc1b4e41f0aa2978")
|
|
(when (featurep! :checkers syntax)
|
|
(package! flycheck-irony :pin "42dbecd4a865cabeb301193bb4d660e26ae3befe"))
|
|
(when (featurep! :completion company)
|
|
(package! company-irony :pin "b44711dfce445610c1ffaec4951c6ff3882b216a")
|
|
(package! company-irony-c-headers :pin "72c386aeb079fb261d9ec02e39211272f76bbd97")))
|
|
(when (package! rtags :pin "db39790fda5c2443bc790b8971ac140914f7e9c2")
|
|
(when (featurep! :completion ivy)
|
|
(package! ivy-rtags))
|
|
(when (featurep! :completion helm)
|
|
(package! helm-rtags))))
|