mirror of
https://codeberg.org/scip/dot-emacs.git
synced 2025-12-16 20:10:58 +01:00
14 lines
312 B
EmacsLisp
14 lines
312 B
EmacsLisp
;; *** Go Lang
|
|
|
|
(use-package go-mode
|
|
:mode "\\.go\\'"
|
|
:mode "\\.mod\\'"
|
|
|
|
:config
|
|
(setq gofmt-args '("-s"))
|
|
(setq tab-width 4)
|
|
(setq indent-tabs-mode 1)
|
|
|
|
:init
|
|
(add-hook 'before-save-hook 'gofmt-before-save))
|