This layer provides support for the python language with the following packages:
Add the +lang/python
layer in your configuration file,
function! Layers()
" ...
Layer '+lang/python'
" ...
endfunction
To utilize this layer you need flake8
on your path. This can be done with,
$ pip install flake8
You can configure the indentation by setting g:sp_python_indentation
in your user-init block (i.e. before loading the plugin). By default it is set to 4
.
By default g:neomake_python_enabled_makers
is set to use all makers. This can be overwritten by setting the desired makers with g:sp_neomake_python_enabled_makers
.