1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

formatting

This commit is contained in:
jdhao 2020-11-05 01:57:38 +08:00
parent b505e98e52
commit 7a5c7c7500

View File

@ -363,8 +363,10 @@ let g:lsp_diagnostics_float_delay = 100
" set up pyls for vim-lsp
if executable('pyls')
" pip install python-language-server
au User lsp_setup call lsp#register_server({
" pip install python-language-server
augroup pyls_setup
autocmd!
autocmd User lsp_setup call lsp#register_server({
\ 'name': 'pyls',
\ 'cmd': {server_info->['pyls']},
\ 'allowlist': ['python'],
@ -375,8 +377,9 @@ if executable('pyls')
\ 'pyflakes': {'enabled': v:false},
\ 'pycodestyle': {'enabled': v:false},
\ }
\ }
\ }
\ }})
augroup END
endif
if executable('vim-language-server')