aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2020-11-16 22:35:10 +0800
committerjdhao <jdhao@hotmail.com>2020-11-16 22:35:10 +0800
commit4c6c3e5e68e3f08bd38bf619b9045af271c4a2bd (patch)
tree01d05b18c7fcae542e27907b99f0bf21ac80dc05 /core
parent04ede68669c0f061f6dbb0ed0d2f37f75cea8e35 (diff)
enable fuzzy completion for pyls
Diffstat (limited to 'core')
-rw-r--r--core/plugins.vim3
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},
\ }
\ }
\ }})