diff options
author | Juan J. Martinez <jjm@usebox.net> | 2022-02-17 13:05:42 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-05-29 22:57:31 +0100 |
commit | 77cb4a8d7c3dcac52dab56f3005bde5310f74095 (patch) | |
tree | 41786dd6b8ac206d854561c1a8a8f50162e33898 /lsc.vim | |
parent | 4c8dbf4a790d58020977c8453392bcb34930af4c (diff) | |
download | dotnvim-77cb4a8d7c3dcac52dab56f3005bde5310f74095.tar.gz dotnvim-77cb4a8d7c3dcac52dab56f3005bde5310f74095.zip |
Using neovim lsp support (for python initialy)
Diffstat (limited to 'lsc.vim')
-rw-r--r-- | lsc.vim | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/lsc.vim b/lsc.vim deleted file mode 100644 index 5c6abd8..0000000 --- a/lsc.vim +++ /dev/null @@ -1,27 +0,0 @@ -" 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" - |