1
0
Fork 0

Drop jedi because I use python 3.6

This commit is contained in:
Jeremy Kaplan 2018-08-01 09:49:32 -07:00 committed by Jeremy Kaplan
commit 95b77ccbba

View file

@ -18,7 +18,6 @@ if dein#load_state('~/.config/nvim/plugins')
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('airblade/vim-gitgutter') call dein#add('airblade/vim-gitgutter')
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')
@ -176,7 +175,7 @@ let g:ale_fixers = {
\ 'prettier', \ 'prettier',
\ ], \ ],
\ 'python': [ \ 'python': [
\ 'yapf', \ 'black',
\ ], \ ],
\} \}
nmap <silent> ;n <Plug>(ale_next_wrap) nmap <silent> ;n <Plug>(ale_next_wrap)
@ -193,13 +192,6 @@ 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