|
| 1 | +#+TITLE: Oh My Emacs golang |
| 2 | +#+OPTIONS: toc:2 num:nil ^:nil |
| 3 | + |
| 4 | +This is part of [[https://github.com/xiaohanyu/oh-my-emacs][oh-my-emacs]]. |
| 5 | + |
| 6 | +* Prerequisites |
| 7 | + :PROPERTIES: |
| 8 | + :CUSTOM_ID: golang-prerequisites |
| 9 | + :END: |
| 10 | + |
| 11 | +#+NAME: golang-prerequisites |
| 12 | +#+CAPTION: Prerequisites for ome-golang module |
| 13 | +| Package | Windows | Ubuntu/Debian/Mint | ArchLinux | Fedora | Mac OS X | Mandatory? | |
| 14 | +|---------+---------+--------------------+-----------+--------+----------+------------| |
| 15 | +| [[https://golang.org/cmd/go][go tool]] | | go | | | | Yes | |
| 16 | +| [[https://github.com/rogpeppe/godef][godef]] | | [go] | | | | No | |
| 17 | +| [[https://github.com/dougm/goflymake][goflymake]] | | [go] | | | | No | |
| 18 | +| [[https://github.com/nsf/gocode][gocode]] | | [go] | | | | No | |
| 19 | + |
| 20 | +* El-get packages |
| 21 | + :PROPERTIES: |
| 22 | + :CUSTOM_ID: golang-el-get-packages |
| 23 | + :END: |
| 24 | + |
| 25 | +#+NAME: golang-el-get-packages |
| 26 | +#+CAPTION: El-get packages for ome-golang module |
| 27 | +| Package | Status | Description | |
| 28 | +|--------------+----------+---------------------------------------------------| |
| 29 | +| [[https://github.com/dominikh/go-mode.el][go-mode]] | Required | This is the Emacs mode for editing Go code | |
| 30 | + |
| 31 | +* About Go |
| 32 | + You can find all the necessary information about golang in the official [[https://golang.org][site]]. |
| 33 | + |
| 34 | +* go-mode |
| 35 | + :PROPERTIES: |
| 36 | + :CUSTOM_ID: go-mode |
| 37 | + :END: |
| 38 | + |
| 39 | +Beginning with Go 1.4, editor integration will not be part of the Go distribution |
| 40 | +anymore, making the github repository the canonical place for go-mode. Please refer |
| 41 | +the repo for all the features and other information for the go-mode. |
| 42 | + |
| 43 | +#+NAME: go-mode |
| 44 | +#+BEGIN_SRC emacs-lisp |
| 45 | +(defun ome-go-mode-setup () |
| 46 | + |
| 47 | + ; set the GOPATH here if not already |
| 48 | + ; (setenv "GOPATH" "/home/chuchao/gowork") |
| 49 | + |
| 50 | + ;; enable the go-mode |
| 51 | + (require 'go-mode) |
| 52 | + (add-hook 'before-save-hook 'gofmt-before-save) |
| 53 | + |
| 54 | + ; key binding for go-remove-unused-imports |
| 55 | + (add-hook 'go-mode-hook '(lambda () |
| 56 | + (local-set-key (kbd "C-c C-r") 'go-remove-unused-imports))) |
| 57 | + |
| 58 | + ; key binding for go-goto-imports |
| 59 | + (add-hook 'go-mode-hook '(lambda () |
| 60 | + (local-set-key (kbd "C-c C-g") 'go-goto-imports))) |
| 61 | + |
| 62 | + ; bind C-c C-f for gofmt |
| 63 | + (add-hook 'go-mode-hook '(lambda () |
| 64 | + (local-set-key (kbd "C-c C-f") 'gofmt))) |
| 65 | + |
| 66 | + ; godoc |
| 67 | + (when (executable-find "godoc") |
| 68 | + (add-hook 'go-mode-hook '(lambda () |
| 69 | + (local-set-key (kbd "C-c C-k") 'godoc)))) |
| 70 | + |
| 71 | + ; goflymake |
| 72 | + (when (executable-find "goflymake") |
| 73 | + (add-to-list 'load-path (concat (getenv "GOPATH") "/src/github.com/dougm/goflymake")) |
| 74 | + (require 'go-flymake) |
| 75 | + (require 'go-flycheck)) |
| 76 | + |
| 77 | + ; go-code |
| 78 | + (when (executable-find "gocode") |
| 79 | + |
| 80 | + (add-to-list 'load-path (concat (getenv "GOPATH") "/src/github.com/nsf/gocode/emacs-company")) |
| 81 | + (require 'company-go) |
| 82 | + |
| 83 | + (add-hook 'go-mode-hook 'company-mode) |
| 84 | + (add-hook 'go-mode-hook (lambda () |
| 85 | + (set (make-local-variable 'company-backends) '(company-go)) |
| 86 | + (company-mode))))) |
| 87 | + |
| 88 | +(when (executable-find "go") |
| 89 | + (ome-install 'go-mode)) |
| 90 | +#+END_SRC |
| 91 | + |
| 92 | +* Note |
| 93 | +The settings listed above are mainly referred from the blog post |
| 94 | +[[http://yousefourabi.com/blog/2014/05/emacs-for-go/][Emacs for Go]], adapted to |
| 95 | +the oh-my-emacs framework with some other configurations. Credits also go to the |
| 96 | +original author of the blog post and also the authros of the awesome golang |
| 97 | +related emacs modes. |
0 commit comments