1

Adding completion stuff

This commit is contained in:
Alex Yatskov 2016-10-29 18:06:33 -07:00
parent e2a84cd9d6
commit 7f2a968ae1

11
.ycm_extra_conf.py Normal file
View File

@ -0,0 +1,11 @@
def FlagsForFile(filename, **kwargs):
flags = [
'-Wall', '-Wextra', '-Werror',
'-std=c11',
'-x', 'c',
]
return {
'flags': flags,
'do_cache': True
}