From f2e01d7e513067ddb57c75f6e38cdcf434946cf8 Mon Sep 17 00:00:00 2001 From: Max Christian Pohle Date: Mon, 22 Oct 2018 00:02:58 +0200 Subject: Major refactoring for version 2.0 vim-plug has been removed and replaced with Vims internal bundle mechanism. But I already noticed, that there is also GLVM now and started trying that as well. --- plugin/jedi.vim | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 plugin/jedi.vim (limited to 'plugin/jedi.vim') diff --git a/plugin/jedi.vim b/plugin/jedi.vim new file mode 100644 index 0000000..dca8838 --- /dev/null +++ b/plugin/jedi.vim @@ -0,0 +1,15 @@ +" JEDI: ============================================================================================================== +augroup JEDI + if has("python") || has('python3') + let g:jedi#completions_enabled = 0 " we do not need completions, because we have YouCompleteMe + let g:jedi#show_call_signatures = 1 " which sadly does not support signatures like jedi + let g:jedi#show_call_signatures_delay = 0 + let g:jedi#auto_vim_configure = 0 + let g:pymode_rope = 0 " https://github.com/davidhalter/jedi-vim/issues/163 + " autocmd FileType python jedi.preload_module('os', 'sys', 'math') + " let g:pymode_options_max_line_length = 120 + " let g:syntastic_python_flake8_args='--ignore=F821,E302,E501,E241,E301' + + packadd jedi-vim + endif " has("python") +augroup END -- cgit v1.2.3