1
0
Fork 0

Add jedi to neovim

This commit is contained in:
Jeremy Kaplan 2018-04-10 09:22:42 -07:00 committed by Jeremy Kaplan
commit 3d83f87721

View file

@ -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