blob: a81089f8f59367e025994b850fc0fa05c091450d (
plain)
1
2
3
4
5
6
7
8
9
10
|
call plug#begin(stdpath('data') . '/plugged')
Plug 'fatih/vim-go'
call plug#end()
set expandtab
set shiftwidth=2
set tabstop=2
autocmd BufWritePre * %s/\s\+$//e
autocmd FileType go setl noet
|