aboutsummaryrefslogtreecommitdiff
path: root/ycm_extra_conf.py
diff options
context:
space:
mode:
authorMax Christian Pohle2022-12-18 20:29:55 +0100
committerMax Christian Pohle2022-12-18 20:56:01 +0100
commit07797b39851da045aa1bfd0289de0858a1377c48 (patch)
tree4ca5d2b26d2ca9d01fc052fce5a26f88364a53d0 /ycm_extra_conf.py
parent1086af63639d2a108f39ae077e0e201dddf4f523 (diff)
downloadvim-07797b39851da045aa1bfd0289de0858a1377c48.tar.bz2
vim-07797b39851da045aa1bfd0289de0858a1377c48.zip
Switched to nvim and neovide
Diffstat (limited to 'ycm_extra_conf.py')
-rw-r--r--ycm_extra_conf.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/ycm_extra_conf.py b/ycm_extra_conf.py
deleted file mode 100644
index 7a1828f..0000000
--- a/ycm_extra_conf.py
+++ /dev/null
@@ -1,21 +0,0 @@
1def FlagsForFile(filename, **kwargs):
2 return {
3 'flags': [
4 '-Wall',
5 '-Wextra',
6 '-Werror',
7 '-Wno-long-long',
8 '-Wno-variadic-macros',
9 '-fexceptions',
10 '-ferror-limit=10000',
11 '-DNDEBUG',
12 '-std=c99',
13 '-x', 'c',
14 '-D_GNU_SOURCE',
15 '-I.',
16 '-I', '/usr/include/'
17 ],
18 'do_cache': True,
19 }
20
21# vim:set et sw=4 ts=4 tw=120:
..