Add go support

This commit is contained in:
Jesús 2021-01-23 10:58:16 -05:00
parent 594d61e319
commit 18d1f070a0
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

11
modules/init-go.el Normal file
View File

@ -0,0 +1,11 @@
;;; init-go.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
;; go-mode
(use-package go-mode
:mode ("\\.go\\'" . go-mode))
(provide 'init-go)
;;; init-go.el ends here