diff options
| author | Thibaut Horel <thibaut.horel@gmail.com> | 2016-02-29 20:17:14 -0500 |
|---|---|---|
| committer | Thibaut Horel <thibaut.horel@gmail.com> | 2016-02-29 20:17:45 -0500 |
| commit | 42a68b98bacc30428466fb3cc1ee8b3687a3f14b (patch) | |
| tree | 65a6fde886cbb2342fa1841de728b2ae1683a9a3 /vim | |
| parent | 6922101af031fff3ed464c1472936b8ab8ac0fbe (diff) | |
| download | dotfiles-42a68b98bacc30428466fb3cc1ee8b3687a3f14b.tar.gz | |
Go config
Diffstat (limited to 'vim')
| -rw-r--r-- | vim/.vimrc | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,4 @@ +" " basic plugin/ syntax support execute pathogen#infect() filetype plugin indent on @@ -121,3 +122,11 @@ let g:pymode_utils_whitespaces = 0 autocmd CursorMovedI * if pumvisible() == 0|silent! pclose|endif autocmd InsertLeave * if pumvisible() == 0|silent! pclose|endif autocmd FileType mail set fo+=aw spell + +let g:go_highlight_functions = 1 +let g:go_highlight_methods = 1 +let g:go_highlight_structs = 1 +let g:go_highlight_interfaces = 1 +let g:go_highlight_operators = 1 +let g:go_highlight_build_constraints = 1 +let g:go_fmt_command = "goimports" |
