11.08.2015

Install Go and Setup Vim as IDE

1. Install Go - http://www.hostingadvice.com/how-to/install-golang-on-ubuntu/
2. Configure Vim as IDE for Go - http://farazdagi.com/blog/2015/vim-as-golang-ide/
3. Docker image of Vim configured with Go - https://hub.docker.com/r/mbrt/golang-vim-dev/

Setup Notes:
When installing vim-go-ide while in corporate firewall, do a clone in this fashion...
git clone https://github.com/farazdagi/vim-go-ide.git ~/.vim_go_runtime

Additional configurations:
$ vim ~/.bashrc
gvm use go1.5.1
alias vimgo='vim -u ~/.vimrc.go'

$ vim ~/.vimrc.go
set t_Co=256

Using the Docker image (what I prefer):
$ cd your/go/workspace
$ docker run --rm -tiv `pwd`:/go mbrt/golang-vim-dev