]> Sergey Matveev's repositories - dotfiles.git/blob - clang-format/.clang-format
Huge tmux-fzf simplification with files quoting
[dotfiles.git] / clang-format / .clang-format
1 {
2     BasedOnStyle: llvm,
3     ColumnLimit: 88,
4     IndentWidth: 4,
5     AlignAfterOpenBracket: AlwaysBreak,
6     AlignConsecutiveAssignments: true,
7     AllowAllParametersOfDeclarationOnNextLine: false,
8     AllowShortBlocksOnASingleLine: true,
9     AlwaysBreakAfterReturnType: TopLevel,
10     BinPackArguments: false,
11     BinPackParameters: false,
12     BreakBeforeTernaryOperators: false,
13     BreakStringLiterals: false,
14     BreakBeforeBraces: Custom,
15     BraceWrapping: {
16         AfterFunction: true,
17     },
18 }