Just a python compilers for VIM
As usual, you can install it with your prefered VIM plugin manager (like Plug
or Vundle).
If you want to install it by yourself, just copy the compiler folder to your ~/.vim folder.
:compiler flake8
:makeI strongly recommend you to use compilers with vim-dispatch.
For example to run a asynchronous flake8 check in every buffer save set in your vimrc:
augroup python
au!
autocmd FileType python compiler flake8
autocmd BufWrite *.py :Dispatch
augroup END