diff options
| author | jdhao <jdhao@hotmail.com> | 2020-11-16 22:35:10 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2020-11-16 22:35:10 +0800 |
| commit | 4c6c3e5e68e3f08bd38bf619b9045af271c4a2bd (patch) | |
| tree | 01d05b18c7fcae542e27907b99f0bf21ac80dc05 | |
| parent | 04ede68669c0f061f6dbb0ed0d2f37f75cea8e35 (diff) | |
enable fuzzy completion for pyls
| -rw-r--r-- | core/plugins.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/plugins.vim b/core/plugins.vim index 6a94fe8..a7c13af 100644 --- a/core/plugins.vim +++ b/core/plugins.vim @@ -370,7 +370,7 @@ let g:lsp_diagnostics_float_delay = 100 " set up pyls for vim-lsp if executable('pyls') - " pip install python-language-server + " pip install python-language-server augroup pyls_setup autocmd! autocmd User lsp_setup call lsp#register_server({ @@ -383,6 +383,7 @@ if executable('pyls') \ 'plugins': {'flake8': {'enabled': v:true}, \ 'pyflakes': {'enabled': v:false}, \ 'pycodestyle': {'enabled': v:false}, + \ 'jedi_completion': {'fuzzy': v:true}, \ } \ } \ }}) |
