1
0
mirror of https://git.decapod.one/brethil/dotfiles synced 2024-06-25 02:08:32 +02:00

vim: disable ALE fix on save on git diffs

This commit is contained in:
bretello 2024-04-05 15:11:07 +02:00
parent c137ef0e0f
commit 62c95b60d5
Signed by: brethil
GPG Key ID: 876AAC6290170FE7

View File

@ -87,6 +87,10 @@ syntax match jsonComment "\(/\*\)\|\(\*/\)"
hi def link jsonComment Comment hi def link jsonComment Comment
augroup dotgit_diffs
au BufRead .git/*.diff let b:ale_fix_on_save=0
augroup END
augroup dvc augroup dvc
au BufRead dvc.yaml let b:ale_fix_on_save=0 au BufRead dvc.yaml let b:ale_fix_on_save=0
au BufRead *.dvc let b:ale_fix_on_save=0 au BufRead *.dvc let b:ale_fix_on_save=0