Write modules + defuns
This commit is contained in:
parent
b998f4ab08
commit
3472a1631f
31 changed files with 1418 additions and 32 deletions
14
modules/module-go.el
Normal file
14
modules/module-go.el
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue