diff options
Diffstat (limited to 'emacs.d/inits')
-rw-r--r-- | emacs.d/inits/90_lang-go.el (renamed from emacs.d/inits/90_lang-gol.el) | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs.d/inits/90_lang-gol.el b/emacs.d/inits/90_lang-go.el index c7ce19d..8e6a565 100644 --- a/emacs.d/inits/90_lang-gol.el +++ b/emacs.d/inits/90_lang-go.el @@ -12,3 +12,7 @@ (bind-key "C-c h" 'godoc go-mode-map) (bind-key "C-c C-g" 'go-goto-imports go-mode-map) (bind-key "C-c C-r" 'go-remove-unused-imports go-mode-map))) + +(use-package company-go + :ensure t + :defer t) |