I want to set up isort to be used in Vim via the ALE plugin. I've added this shortcut to my .vimrc:
nnoremap <leader>I :ALEFix isort<CR>
However, when I activate it nothing happens. I have isort installed both globally and in the virtualenv. Could anyone give me a hint how to debug/solve this issue?
From ALE's README.md
The proper way of configuring
isortis by settingg:ale_fixersin yourvimrc/init.vimorb:ale_fixersinftplugin/python.vim.E.g.
Any command line options you want to pass to isort you do it by setting
g:ale_python_isort_options.