diff --git a/dotfiles/vim/global_extra_conf.py b/dotfiles/vim/global_extra_conf.py deleted file mode 100644 index 519252f..0000000 --- a/dotfiles/vim/global_extra_conf.py +++ /dev/null @@ -1,9 +0,0 @@ -"""Main python conf file for handling paths in virtual environments""" - - -def Settings(**kwargs): - client_data = kwargs['client_data'] - return { - 'interpreter_path': client_data['g:ycm_python_interpreter_path'], - 'sys_path': client_data['g:ycm_python_sys_path'] - } diff --git a/dotfiles/vim/ycm_extra_conf.py b/dotfiles/vim/ycm_extra_conf.py deleted file mode 100644 index f6b58ca..0000000 --- a/dotfiles/vim/ycm_extra_conf.py +++ /dev/null @@ -1,9 +0,0 @@ -"""Base C family flags file copied from the USER GUIDE -(https://github.com/ycm-core/YouCompleteMe#option-2-provide-the-flags-manually) -""" - - -def Settings(**kwargs): - return { - 'flags': ['-x', 'c', '-Wall', '-Wextra', '-Werror', '-Wshadow'], - }