mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
lsp-metals was extracted out of lsp-emacs into a separate package. This change adds that separate package to the scala module when the lsp feature is selected. Fixes hlissner/doom-emacs#3362
9 lines
236 B
EmacsLisp
9 lines
236 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/scala/packages.el
|
|
|
|
(package! sbt-mode :pin "633a315ad4")
|
|
(package! scala-mode :pin "46bb948345")
|
|
|
|
(when (featurep! +lsp)
|
|
(package! lsp-metals :pin "5468b638cd81b7d9ce9edc652c281b28bd775c23"))
|