mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-09 12:57:25 -05:00
Write modules + defuns
This commit is contained in:
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
|
Reference in New Issue
Block a user