diff --git a/init.vim b/init.vim index 09693f5..525468d 100644 --- a/init.vim +++ b/init.vim @@ -144,3 +144,11 @@ autocmd InsertLeave * if pumvisible() == 0|pclose|endif inoremap pumvisible() ? "\" : "\" " }}} +" CUSTOM THINGS DEPENDING ON ENV ####################################{{{ +let nvim_disable_python_linter=$NVIM_DISABLE_PYTHON_LINTER +if nvim_disable_python_linter == '1' +let g:ale_linters = { +\ 'python': [], +\} +endif +" }}}