summaryrefslogtreecommitdiff
path: root/lisp/go.el
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2023-03-11 17:22:13 -0500
committermattkae <mattkae@protonmail.com>2023-03-11 17:22:13 -0500
commit38893cc42e33fc3ab5b80ef592b66226b9ba91cf (patch)
treed47b5588c892f9f16c3785afe856958d139c5e8d /lisp/go.el
parent8ed31715bf05c33918c6926c36f510d838521d6a (diff)
Using use-package everywhere, upgrade to org roam
Diffstat (limited to 'lisp/go.el')
-rw-r--r--lisp/go.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/go.el b/lisp/go.el
index 2adb035..f24ec5f 100644
--- a/lisp/go.el
+++ b/lisp/go.el
@@ -1,8 +1,11 @@
;;; Code:
-(require 'eglot)
+(use-package eglot
+ :ensure t)
(use-package go-mode
+ :ensure t
+ :after (eglot)
:config
(add-hook 'go-mode-hook 'eglot-ensure))