Files
.emacs.d/mode-customizations/go-mode.el
Jim Myhrberg b35a3f2001 Remove highlight-indentation mode from Go
The mode doesn't work with files that use actual tabs for indentation.
2014-07-20 10:39:50 +01:00

14 lines
309 B
EmacsLisp

(defun customizations-for-go-mode ()
(interactive)
(flyspell-prog-mode)
(flycheck-mode)
(linum-mode t)
(fci-mode)
(auto-complete-mode)
(whitespace-mode)
(subword-mode)
(setq tab-width 4))
(add-hook 'go-mode-hook 'customizations-for-go-mode)
(add-hook 'before-save-hook #'gofmt-before-save)