diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-07-29 08:30:32 -0700 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-07-29 08:30:32 -0700 |
commit | 11c479c1f0dd6f22ce8d5fe7ef5292e81a0bf42e (patch) | |
tree | d8c4e47f3448305e4c3f3e16c352258b6fb3ca3e /emacs.d/custom/fcuny-company.el | |
parent | [emacs] improve support for go-mode (diff) | |
download | emacs.d-11c479c1f0dd6f22ce8d5fe7ef5292e81a0bf42e.tar.gz |
[emacs] improve support for go
move the requirement for `company-go` to the module for go. rework the configuration for hydra, to make it a little bit easier. force length of comments to 80 characters per line.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-company.el | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/emacs.d/custom/fcuny-company.el b/emacs.d/custom/fcuny-company.el index 4ffc900..0ea1fad 100644 --- a/emacs.d/custom/fcuny-company.el +++ b/emacs.d/custom/fcuny-company.el @@ -2,11 +2,4 @@ :ensure t :diminish company-mode) -(use-package company-go - :ensure t - :after (company) - :hook (go-mode . (lambda () - (setq-local company-backends - (append (list 'company-go) company-backends))))) - (provide 'fcuny-company) |