1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 22:55:10 +01:00

Set a filesize limit

This commit is contained in:
2017-11-03 17:08:41 +01:00
parent a829db3042
commit c9a9bb7fab

1
.vimrc
View File

@@ -196,6 +196,7 @@ Plugin 'w0rp/ale'
nmap <leader>= <Plug>(ale_fix)
" Quickly open the loclist to see syntax errors
nmap <leader>; :lopen<CR>
let g:ale_maximum_file_size = 500000 " Don't lint large files (> 500KB), it can slow things down
let g:ale_fixers = {}
" Python specific settings
let g:ale_fixers.python = ['isort']