Write modules + defuns

This commit is contained in:
Henrik Lissner 2015-06-15 09:06:10 +02:00
parent b998f4ab08
commit 3472a1631f
31 changed files with 1418 additions and 32 deletions

14
modules/module-go.el Normal file
View file

@ -0,0 +1,14 @@
;;; module-go.el
(use-package go-mode
:mode "\\.go$"
:interpreter "go"
:config
(bind! :map go-mode-map :n "gd" 'godef-jump)
(use-package company-go
:config
(add-company-backend! go-mode (go yasnippet))))
(provide 'module-go)
;;; module-go.el ends here