From 8f8a9090794b43ae998902f8a4eed303e8504ccb Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Fri, 8 Dec 2017 13:59:07 +0100 Subject: [PATCH] Hardcode on Python 2 for the moment, let's see if that fixes timeouts --- .vimrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 7be7f0c..122680a 100644 --- a/.vimrc +++ b/.vimrc @@ -157,7 +157,8 @@ Plugin 'davidhalter/jedi-vim' Plugin 'Valloric/YouCompleteMe' " YouCompleteMe interpreter version (should be the same as what YCM was " compiled with): -let g:ycm_server_python_interpreter = '/usr/bin/python' +"let g:ycm_server_python_interpreter = '/usr/bin/python' +let g:ycm_server_python_interpreter = 'python2' " Improved Django handling Plugin 'tweekmonster/django-plus.vim'