summary refs log tree commit diff
path: root/config/init-go.el
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--config/init-go.el28
1 files changed, 0 insertions, 28 deletions
diff --git a/config/init-go.el b/config/init-go.el
deleted file mode 100644
index daabb2b..0000000
--- a/config/init-go.el
+++ /dev/null
@@ -1,28 +0,0 @@
-;;; init-go.el --- Configure go related things -*- lexical-binding: t -*-
-;; Author: Franck Cuny <franck@fcuny.net>
-
-;;; Commentary:
-
-;; go-mode and friends
-
-;;; Code:
-
-(use-package go-mode
-  :ensure t
-  :defer t
-  :hook ((go-mode . tree-sitter-hl-mode)
-         (go-mode . eglot-ensure)
-         (go-mode . (lambda () (setq tab-width 4)))
-         (go-mode . (lambda () (add-hook 'before-save-hook 'eglot-format-buffer nil t))))
-  :bind (:map go-mode-map
-              ("C-c C-c" . compile)))
-
-(use-package gotest
-  :ensure t
-  :after go-mode
-  :custom
-  (go-test-verbose t))
-
-(provide 'init-go)
-
-;;; init-go.el ends here