行頭カッコしないよう、Googleスタイルを使用。
"C_Cpp.clang_format_style": "Google"
ただこの設定だと、インデント2にされて悲しい。
インデント4にするには以下のように設定する。
"C_Cpp.clang_format_style": "{ BasedOnStyle: Google, IndentWidth: 4 }"
もしくは
"C_Cpp.clang_format_style": "{ BreakBeforeBraces: Attach, IndentWidth: 4 }"
参考:
https://gist.github.com/9sako6/458def885387e8dcd2f0f2742a1dc3e4