mirror of
https://github.com/Matir/skel.git
synced 2026-05-25 21:19:09 -07:00
7 lines
230 B
Python
7 lines
230 B
Python
def Settings( **kwargs ):
|
|
client_data = kwargs[ 'client_data' ]
|
|
return {
|
|
'interpreter_path': client_data[ 'g:ycm_python_interpreter_path' ] or '/usr/bin/python3',
|
|
'sys_path': client_data[ 'g:ycm_python_sys_path' ]
|
|
}
|