diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-01-03 10:00:07 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-01-03 10:00:07 -0800 |
commit | aaf7b46a382c70fccf17653602d40272cfd83659 (patch) | |
tree | 34136b1b007500aeeefe28199453be09e40f502d /emacs.d | |
parent | [emacs] small UI update (diff) | |
download | emacs.d-aaf7b46a382c70fccf17653602d40272cfd83659.tar.gz |
[emacs] gofmt on save
Closes #8.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/inits/90_lang-go.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs.d/inits/90_lang-go.el b/emacs.d/inits/90_lang-go.el index 94c44ef..b20b467 100644 --- a/emacs.d/inits/90_lang-go.el +++ b/emacs.d/inits/90_lang-go.el @@ -19,4 +19,5 @@ :init (progn (add-hook 'go-mode-hook (lambda () (go-eldoc-setup) + (add-hook 'before-save-hook 'gofmt-before-save) (set (make-local-variable 'company-backends) '(company-go)))))) |