安裝Go
到https://code.google.com/p/go/wiki/Downloads?tm=2下載go1.2.2.darwin-amd64-osx10.8.pkg照步驟安裝。
設定GOPATH
vim ~/.bash_profile
加入
export GOPATH=/Users/vampirewalk/develop/go
export PATH=$GOPATH/bin:$PATH
使用Vundle管理Vim plugin
參照 https://github.com/gmarik/Vundle.vim
安裝vim-go
在.vimrc裏面加入
Plugin 'fatih/vim-go'
然後在vim裏面:PluginInstall
設定colorscheme
curl -o ~/.vim/colors https://raw.githubusercontent.com/fatih/molokai/master/colors/molokai.vim
vim ~/.vimrc
在vimrc中,在” Put your non-Plugin stuff after this line之後加入
syntax on
colorscheme molokai
set t_Co=256
autocmd BufNewFile,BufReadPost *.go set filetype=go
安裝YouCompleteMe
https://github.com/Valloric/YouCompleteMe
調整MacVim的字型
vim ~/.gvimrc
寫入
set guifont=Monaco:h16
沒有留言:
張貼留言