mirror of
https://github.com/Lissy93/dotfiles.git
synced 2025-01-10 06:08:14 +01:00
20 lines
370 B
VimL
20 lines
370 B
VimL
if exists('b:did_ftplugin')
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
|
|
let b:ale_linters = ['go build', 'gometalinter', 'gopls']
|
|
let b:ale_fixers = ['gofmt', 'goimports', 'trim_whitespace']
|
|
|
|
setlocal noexpandtab
|
|
setlocal shiftwidth=4
|
|
setlocal softtabstop=4
|
|
setlocal tabstop=4
|
|
|
|
setlocal nolisp
|
|
setlocal autoindent
|
|
|
|
setlocal nospell
|
|
|
|
set makeprg=go " point :make to go binary
|