" vim-lsc configuation " " req: " - python-lsp-server " - pylsp-mypy " - python-lsp-black " " ensure yapf and autopep8 is not installed so black works " let g:lsc_server_commands = { \ 'python': { \ 'command': 'pylsp', \ 'suppress_stderr': 0, \ 'workspace_config': { \ 'pylsp.plugins.pylsp_mypy.enabled': 1, \ 'pylsp.plugins.pylsp_mypy.live_mode': 0 \ } \ }, \ 'haskell' : { \ 'command': 'haskell-language-server-wrapper --lsp', \ 'suppress_stderr': 1 \ } \ } let g:lsc_auto_map = {'defaults': v:true, 'FindImplementations': ''} let g:lsc_preview_split_direction = "below"