aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-go.el
blob: e61a9cc9d77c96eceaff8f4abd5e0eee25a8a96f (plain)
1
2
3
4
5
6
7
8
9
10
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