aboutsummaryrefslogtreecommitdiff
path: root/ycm_extra_conf.py
diff options
context:
space:
mode:
authorMax Christian Pohle2017-06-11 10:50:50 +0200
committerMax Christian Pohle2017-06-11 10:50:50 +0200
commitba00b66415e219a3a4ef0b469d9bc01eb83fc3b5 (patch)
tree3fabb2d6cd8e258e03bb814369a168cd6b5d08e0 /ycm_extra_conf.py
parent79655830d8c1daf866697c33ad07ce3b4b4ad920 (diff)
downloadvim-ba00b66415e219a3a4ef0b469d9bc01eb83fc3b5.tar.bz2
vim-ba00b66415e219a3a4ef0b469d9bc01eb83fc3b5.zip
Fancier lightline
Diffstat (limited to 'ycm_extra_conf.py')
-rw-r--r--ycm_extra_conf.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/ycm_extra_conf.py b/ycm_extra_conf.py
index 3c2b399..7a1828f 100644
--- a/ycm_extra_conf.py
+++ b/ycm_extra_conf.py
@@ -1,4 +1,3 @@
1<<<<<<< Updated upstream
2def FlagsForFile(filename, **kwargs): 1def FlagsForFile(filename, **kwargs):
3 return { 2 return {
4 'flags': [ 3 'flags': [
@@ -20,29 +19,3 @@ def FlagsForFile(filename, **kwargs):
20 } 19 }
21 20
22# vim:set et sw=4 ts=4 tw=120: 21# vim:set et sw=4 ts=4 tw=120:
23=======
24import os
25import ycm_core
26
27def FlagsForFile( filename, **kwargs ):
28 return {
29 'flags': [
30 '-Wall',
31 '-Wextra',
32 '-Werror',
33 '-Wno-long-long',
34 '-Wno-variadic-macros',
35 '-fexceptions',
36 '-ferror-limit=10000',
37 '-DNDEBUG',
38 '-std=c99',
39 '-x', 'c',
40 '-D_GNU_SOURCE',
41 '-I.',
42 '-I', '/usr/include/'
43 ],
44 'do_cache': True,
45 }
46
47# vim:set et sw=2 ts=2 tw=120:
48>>>>>>> Stashed changes
..