summaryrefslogtreecommitdiff
path: root/lisp/go.el
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2022-12-17 10:46:19 -0500
committermattkae <mattkae@protonmail.com>2022-12-17 10:46:19 -0500
commit18cccf8ce0b0ac454b74f6ce81219a42117aa447 (patch)
treedbb58d704c8499d639a2a39578dd0876370efe4b /lisp/go.el
parent1ef51c8468872b70eea8335a8166b64711c9fe98 (diff)
Improved CSS mode, removed the dashboard (it was useless), and added go 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.