summaryrefslogtreecommitdiff
path: root/lisp/go.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/go.el')
-rw-r--r--lisp/go.el10
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/go.el b/lisp/go.el
new file mode 100644
index 0000000..2adb035
--- /dev/null
+++ b/lisp/go.el
@@ -0,0 +1,10 @@
+
+;;; Code:
+(require 'eglot)
+
+(use-package go-mode
+ :config
+ (add-hook 'go-mode-hook 'eglot-ensure))
+
+(provide 'go)
+;;; go.el ends here.