Add jedi to neovim
This commit is contained in:
parent
816665abab
commit
3d83f87721
1 changed files with 9 additions and 0 deletions
|
|
@ -15,6 +15,7 @@ if dein#load_state('~/.config/nvim/plugins')
|
||||||
call dein#add('Shougo/deoplete.nvim')
|
call dein#add('Shougo/deoplete.nvim')
|
||||||
call dein#add('Shougo/neosnippet.vim')
|
call dein#add('Shougo/neosnippet.vim')
|
||||||
call dein#add('airblade/vim-rooter')
|
call dein#add('airblade/vim-rooter')
|
||||||
|
call dein#add('davidhalter/jedi-vim')
|
||||||
call dein#add('fatih/vim-go')
|
call dein#add('fatih/vim-go')
|
||||||
call dein#add('kana/vim-textobj-user')
|
call dein#add('kana/vim-textobj-user')
|
||||||
call dein#add('glts/vim-textobj-comment')
|
call dein#add('glts/vim-textobj-comment')
|
||||||
|
|
@ -30,6 +31,7 @@ if dein#load_state('~/.config/nvim/plugins')
|
||||||
call dein#add('vim-python/python-syntax')
|
call dein#add('vim-python/python-syntax')
|
||||||
call dein#add('w0rp/ale')
|
call dein#add('w0rp/ale')
|
||||||
call dein#add('zchee/deoplete-go', {'build': 'make'})
|
call dein#add('zchee/deoplete-go', {'build': 'make'})
|
||||||
|
call dein#add('zchee/deoplete-jedi')
|
||||||
|
|
||||||
call dein#end()
|
call dein#end()
|
||||||
call dein#save_state()
|
call dein#save_state()
|
||||||
|
|
@ -165,6 +167,13 @@ noremap <leader>m :NERDTreeFind<Space>
|
||||||
|
|
||||||
let g:python_highlight_all = 1
|
let g:python_highlight_all = 1
|
||||||
|
|
||||||
|
let g:jedi#completions_enabled = 0
|
||||||
|
let g:jedi#force_py_version = 3
|
||||||
|
let g:jedi#popup_on_dot = 0
|
||||||
|
let g:jedi#show_call_signatures = "0"
|
||||||
|
let g:jedi#rename_command = ""
|
||||||
|
let g:jedi#usages_command = ""
|
||||||
|
|
||||||
let g:go_highlight_build_constraints = 1
|
let g:go_highlight_build_constraints = 1
|
||||||
let g:go_highlight_interfaces = 1
|
let g:go_highlight_interfaces = 1
|
||||||
let g:go_highlight_functions = 1
|
let g:go_highlight_functions = 1
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue