diff options
author | flu0r1ne <flu0r1ne@flu0r1ne.net> | 2023-08-17 15:56:11 -0500 |
---|---|---|
committer | flu0r1ne <flu0r1ne@flu0r1ne.net> | 2023-08-17 15:56:11 -0500 |
commit | 34779155d5b69b51aa301e7c111f95ea9c840589 (patch) | |
tree | 7289232dc3c4cd187e065792191dd707f08d6e79 /.ycm_extra_conf.py | |
download | wg2nd-34779155d5b69b51aa301e7c111f95ea9c840589.tar.xz wg2nd-34779155d5b69b51aa301e7c111f95ea9c840589.zip |
init commit
Diffstat (limited to '.ycm_extra_conf.py')
-rw-r--r-- | .ycm_extra_conf.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.ycm_extra_conf.py b/.ycm_extra_conf.py new file mode 100644 index 0000000..da9fe01 --- /dev/null +++ b/.ycm_extra_conf.py @@ -0,0 +1,9 @@ +def Settings( **kwargs ): + return { + 'flags': [ + '-Wall', '-Wextra', '-Werror', + '-Isrc', '-Itest', + '-std=c++20', + '-Wno-unused-function', + ], + } |