mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-01 04:16:30 +00:00
10 lines
264 B
VimL
10 lines
264 B
VimL
|
let g:argwrap_tail_comma = 1
|
||
|
let g:ale_fix_on_save = 1
|
||
|
" Disable some vim-go settings when Ale is installed
|
||
|
if exists('g:ale_fixers')
|
||
|
let g:go_def_mapping_enabled = 0
|
||
|
let g:go_version_warning = 0
|
||
|
let g:go_fmt_autosave = 0
|
||
|
let g:go_imports_autosave = 0
|
||
|
end
|