From 18cccf8ce0b0ac454b74f6ce81219a42117aa447 Mon Sep 17 00:00:00 2001 From: mattkae Date: Sat, 17 Dec 2022 10:46:19 -0500 Subject: Improved CSS mode, removed the dashboard (it was useless), and added go mode --- lisp/go.el | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lisp/go.el (limited to 'lisp/go.el') 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. -- cgit v1.2.1