diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-11-01 07:04:05 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-11-01 07:04:05 +0000 |
commit | 39ecf1710f1b380f30eebef55098dfc3abee5af9 (patch) | |
tree | 3b33768d086749797dd3797790447d1178646c6e /ClangFormat | |
parent | ebdfaf5a28ad629abcb2d8f7024381b0e2c6b48f (diff) | |
download | dotfiles-39ecf1710f1b380f30eebef55098dfc3abee5af9.tar.gz dotfiles-39ecf1710f1b380f30eebef55098dfc3abee5af9.tar.bz2 dotfiles-39ecf1710f1b380f30eebef55098dfc3abee5af9.zip |
Allman fits my C/C++ brace wrapping style
Diffstat (limited to 'ClangFormat')
-rw-r--r-- | ClangFormat/.clang-format | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/ClangFormat/.clang-format b/ClangFormat/.clang-format index 20c4e46..9d430ee 100644 --- a/ClangFormat/.clang-format +++ b/ClangFormat/.clang-format @@ -10,21 +10,7 @@ AllowShortLambdasOnASingleLine: false AllowShortLoopsOnASingleLine: false AlwaysBreakTemplateDeclarations: Yes BasedOnStyle: LLVM -BreakBeforeBraces: Custom -BraceWrapping: - AfterEnum: true - AfterStruct: true - AfterFunction: true - AfterNamespace: true - AfterClass: true - AfterUnion: true - AfterControlStatement: true - AfterExternBlock: true - BeforeLambdaBody: true - BeforeCatch: true - BeforeElse: true - SplitEmptyFunction: true - IndentBraces: false +BreakBeforeBraces: Allman ColumnLimit: 80 IndentWidth: 2 NamespaceIndentation: All |