go stuff maybe

This commit is contained in:
John Doty 2022-07-01 09:04:02 -04:00
parent 50d16c05da
commit d7101a46f4
2 changed files with 6 additions and 3 deletions

View file

@ -17,7 +17,7 @@
'(comint-prompt-read-only t) '(comint-prompt-read-only t)
'(comint-scroll-to-bottom-on-input t) '(comint-scroll-to-bottom-on-input t)
'(company-backends '(company-backends
'(company-tasks company-reviewers company-bbdb company-nxml company-css company-capf '(company-bbdb company-nxml company-css company-capf
(company-dabbrev-code company-keywords))) (company-dabbrev-code company-keywords)))
'(company-minimum-prefix-length 1) '(company-minimum-prefix-length 1)
'(css-indent-offset 2) '(css-indent-offset 2)
@ -50,6 +50,7 @@
'(mouse-wheel-scroll-amount '(1 ((shift) . 5) ((control)))) '(mouse-wheel-scroll-amount '(1 ((shift) . 5) ((control))))
'(nrepl-use-ssh-fallback-for-remote-hosts t) '(nrepl-use-ssh-fallback-for-remote-hosts t)
'(omnisharp-server-executable-path nil) '(omnisharp-server-executable-path nil)
'(org-adapt-indentation t)
'(org-export-backends '(ascii html icalendar latex md odt)) '(org-export-backends '(ascii html icalendar latex md odt))
'(org-export-with-toc nil) '(org-export-with-toc nil)
'(org-hide-leading-stars t) '(org-hide-leading-stars t)

View file

@ -820,7 +820,9 @@ Or, uh, Objective C, I guess."
;; Go (#golang) Mode ;; Go (#golang) Mode
;; ================================================================= ;; =================================================================
(use-package go-mode :ensure t (use-package go-mode :ensure t
:mode "\\.go\\'") :mode "\\.go\\'"
:config
(add-hook 'before-save-hook 'gofmt-before-save))
;; (require 'auto-complete-config) ;; (require 'auto-complete-config)
;; (require 'go-autocomplete) ;; (require 'go-autocomplete)