]> Untitled Git - vimfiles.git/commitdiff
jedi-vim -> pyls
authorPhilippe Hürlimann <p@hurlimann.org>
Tue, 20 Nov 2018 21:27:22 +0000 (22:27 +0100)
committerPhilippe Hürlimann <p@hurlimann.org>
Tue, 20 Nov 2018 21:27:22 +0000 (22:27 +0100)
init.vim

index 549701e9938e2acc8e5fd4e49a0a932946453503..4e1bdf023ab7de198408d1cbbcc2dd9ec43555d5 100644 (file)
--- a/init.vim
+++ b/init.vim
@@ -7,7 +7,6 @@ Plug 'ap/vim-css-color'
 Plug 'autozimu/LanguageClient-neovim', { 'branch': 'next', 'do': 'bash install.sh' }
 Plug 'avakhov/vim-yaml'
 Plug 'bitterjug/vim-colors-bitterjug'
-Plug 'davidhalter/jedi-vim'
 Plug 'dhruvasagar/vim-table-mode'
 Plug 'honza/vim-snippets'
 Plug 'junegunn/vim-easy-align'
@@ -57,8 +56,9 @@ set laststatus=2
 set hidden
 
 let g:LanguageClient_serverCommands = {
-    \ 'rust': ['rustup', 'run', 'stable', 'rls'],
     \ 'haskell': ['hie-wrapper'],
+    \ 'python': ['pyls'],
+    \ 'rust': ['rustup', 'run', 'stable', 'rls'],
     \}
 
 nnoremap <F5> :call LanguageClient_contextMenu()<CR>