mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
BREAKING CHANGE: This removes company and non-LSP integration from the Go module, in order to reduce the complexity of the module, reduce dependencies on Company, and lean more on LSP, which provides these features with more reliability and consistency. Switch to :tools lsp and install a Go LSP client to get these features back.
11 lines
460 B
EmacsLisp
11 lines
460 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/go/packages.el
|
|
|
|
(package! go-mode :pin "0ed3c5227e7f622589f1411b4939c3ee34711ebd")
|
|
(package! gorepl-mode :pin "6a73bf352e8d893f89cad36c958c4db2b5e35e07")
|
|
(package! go-tag :pin "33f2059551d5298ca228d90f525b99d1a8d70364")
|
|
(package! go-gen-test :pin "af00a9abbaba2068502327ecdef574fd894a884b")
|
|
|
|
(when (modulep! :checkers syntax -flymake)
|
|
(package! flycheck-golangci-lint :pin "424ba1b3a13f5548c440b7a25822932ad4b51cd6"))
|