Make loading faster by eliminating require blocks
Some checks failed
/ Test config on 20 (push) Failing after 45s

This commit is contained in:
Maciej 2025-01-17 10:22:38 +02:00
parent 3641dad52a
commit 118cf92a27
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
37 changed files with 234 additions and 211 deletions

View file

@ -9,8 +9,10 @@
;; golang mode stuff
;;; Code:
(require 'icejam-prog-mode)
(declare-function column-enforce-n 'column-enforce-mode (number))
(declare-function lsp 'lsp-mode)
(declare-function icejam-set-indent 'icejam-prog-mode)
(declare-function icejam-set-lsp-capfs 'icejam-complete-at-point)
(use-package go-mode
:requires (lsp-mode lsp-ui)
@ -21,9 +23,10 @@
"Activate my own Golang mode settings."
(icejam-set-indent 8)
(column-enforce-n 100)
(lsp))
(lsp)
(icejam-set-lsp-capfs))
(add-hook 'go-mode-hook 'icejam-activate-golang-mode)
(add-hook 'go-mode-hook #'icejam-activate-golang-mode)
(provide 'icejam-lang-golang)
;;; icejam-lang-golang.el ends here