Work on getting golang to work better, part 1

This commit is contained in:
John Doty 2013-11-14 14:09:29 -08:00
parent 6297c32165
commit 7965eac4e6
4 changed files with 1155 additions and 8 deletions

View file

@ -472,14 +472,6 @@
(add-to-list 'auto-mode-alist '("\\.ps1\\'" . powershell-mode))
(add-to-list 'auto-mode-alist '("\\.psm1\\'" . powershell-mode))
;; =================================================================
;; Go (#golang) Mode
;;
;; Note that apparently go-mode is too special for the standard
;; autoload/add-to-list stuff. Good for it!
;; =================================================================
;;(require 'go-mode-load)
;; =================================================================
;; LUA Mode
;; =================================================================
@ -519,6 +511,16 @@
(setq hs-set-up-overlay 'display-code-line-counts)
;; =================================================================
;; Go (#golang) Mode
;;
;; Note that apparently go-mode is too special for the standard
;; autoload/add-to-list stuff. Good for it!
;; =================================================================
(require 'go-mode-load)
;;(require 'go-autocomplete)
;;(require 'auto-complete-config)
;; =================================================================
;; No idea why custom-set-faces is way down here, but OK. I must
;; have been thinking of something.