2011-08-17 19:50:55 -06:00
|
|
|
Vim plugins for Go (http://golang.org)
|
|
|
|
======================================
|
|
|
|
|
2013-02-17 20:03:47 -07:00
|
|
|
To use all the Vim plugins, add these lines to your $HOME/.vimrc.
|
2011-08-17 19:50:55 -06:00
|
|
|
|
2013-02-17 20:03:47 -07:00
|
|
|
" Some Linux distributions set filetype in /etc/vimrc.
|
|
|
|
" Clear filetype flags before changing runtimepath to force Vim to reload them.
|
|
|
|
filetype off
|
|
|
|
filetype plugin indent off
|
|
|
|
set runtimepath+=$GOROOT/misc/vim
|
2011-08-17 19:50:55 -06:00
|
|
|
filetype plugin indent on
|
|
|
|
syntax on
|
|
|
|
|
|
|
|
If you want to select fewer plugins, use the instructions in the rest of
|
|
|
|
this file.
|
|
|
|
|
|
|
|
Vim syntax highlighting
|
|
|
|
-----------------------
|
2010-06-20 03:46:12 -06:00
|
|
|
|
|
|
|
To install automatic syntax highlighting for GO programs:
|
|
|
|
|
2010-06-20 23:35:24 -06:00
|
|
|
1. Copy or link the filetype detection script to the ftdetect directory
|
|
|
|
underneath your vim runtime directory (normally $HOME/.vim/ftdetect)
|
|
|
|
2. Copy or link syntax/go.vim to the syntax directory underneath your vim
|
|
|
|
runtime directory (normally $HOME/.vim/syntax). Linking this file rather
|
|
|
|
than just copying it will ensure any changes are automatically reflected
|
|
|
|
in your syntax highlighting.
|
|
|
|
3. Add the following line to your .vimrc file (normally $HOME/.vimrc):
|
|
|
|
|
2010-06-20 03:46:12 -06:00
|
|
|
syntax on
|
2010-06-20 23:35:24 -06:00
|
|
|
|
|
|
|
In a typical unix environment you might accomplish this using the following
|
|
|
|
commands:
|
|
|
|
|
|
|
|
mkdir -p $HOME/.vim/ftdetect
|
|
|
|
mkdir -p $HOME/.vim/syntax
|
2011-08-17 19:50:55 -06:00
|
|
|
mkdir -p $HOME/.vim/autoload/go
|
2010-06-20 23:35:24 -06:00
|
|
|
ln -s $GOROOT/misc/vim/ftdetect/gofiletype.vim $HOME/.vim/ftdetect/
|
|
|
|
ln -s $GOROOT/misc/vim/syntax/go.vim $HOME/.vim/syntax
|
2011-08-17 19:50:55 -06:00
|
|
|
ln -s $GOROOT/misc/vim/autoload/go/complete.vim $HOME/.vim/autoload/go
|
2010-06-20 23:35:24 -06:00
|
|
|
echo "syntax on" >> $HOME/.vimrc
|
2011-01-24 18:36:13 -07:00
|
|
|
|
|
|
|
|
2011-08-17 19:50:55 -06:00
|
|
|
Vim filetype plugins
|
|
|
|
--------------------
|
2011-01-24 18:36:13 -07:00
|
|
|
|
2011-08-17 19:50:55 -06:00
|
|
|
To install one of the available filetype plugins:
|
2011-01-24 18:36:13 -07:00
|
|
|
|
|
|
|
1. Same as 1 above.
|
2013-06-17 22:59:50 -06:00
|
|
|
2. Copy or link ftplugin/go.vim to the ftplugin directory underneath your vim
|
|
|
|
runtime directory (normally $HOME/.vim/ftplugin). Copy or link one or more
|
|
|
|
additional plugins from ftplugin/go/*.vim to the Go-specific subdirectory
|
|
|
|
in the same place ($HOME/.vim/ftplugin/go/*.vim).
|
2011-01-24 18:36:13 -07:00
|
|
|
3. Add the following line to your .vimrc file (normally $HOME/.vimrc):
|
|
|
|
|
|
|
|
filetype plugin on
|
2011-03-07 21:42:23 -07:00
|
|
|
|
|
|
|
|
2011-08-17 19:50:55 -06:00
|
|
|
Vim indentation plugin
|
|
|
|
----------------------
|
2011-03-07 21:42:23 -07:00
|
|
|
|
2011-08-17 19:50:55 -06:00
|
|
|
To install automatic indentation:
|
2011-03-07 21:42:23 -07:00
|
|
|
|
|
|
|
1. Same as 1 above.
|
|
|
|
2. Copy or link indent/go.vim to the indent directory underneath your vim
|
|
|
|
runtime directory (normally $HOME/.vim/indent).
|
|
|
|
3. Add the following line to your .vimrc file (normally $HOME/.vimrc):
|
|
|
|
|
|
|
|
filetype indent on
|
2011-08-03 00:46:35 -06:00
|
|
|
|
|
|
|
|
|
|
|
Godoc plugin
|
2011-08-17 19:50:55 -06:00
|
|
|
------------
|
2011-08-03 00:46:35 -06:00
|
|
|
|
|
|
|
To install godoc plugin:
|
|
|
|
|
|
|
|
1. Same as 1 above.
|
|
|
|
2. Copy or link plugin/godoc.vim to $HOME/.vim/plugin/godoc,
|
|
|
|
syntax/godoc.vim to $HOME/.vim/syntax/godoc.vim,
|
2011-08-17 19:50:55 -06:00
|
|
|
and autoload/go/complete.vim to $HOME/.vim/autoload/go/complete.vim.
|