a vim plugin that displays stuff on an led matrix
1---
2Language: Cpp
3BasedOnStyle: Google
4IndentWidth: 2
5TabWidth: 2
6UseTab: Never
7ColumnLimit: 100
8AlignAfterOpenBracket: Align
9AlignConsecutiveAssignments: false
10AlignConsecutiveDeclarations: false
11AlignEscapedNewlines: Left
12AlignOperands: true
13AlignTrailingComments: true
14AllowAllParametersOfDeclarationOnNextLine: false
15AllowShortBlocksOnASingleLine: false
16AllowShortCaseLabelsOnASingleLine: false
17AllowShortFunctionsOnASingleLine: Inline
18AllowShortIfStatementsOnASingleLine: false
19AllowShortLoopsOnASingleLine: false
20AlwaysBreakAfterReturnType: None
21AlwaysBreakBeforeMultilineStrings: true
22AlwaysBreakTemplateDeclarations: Yes
23BinPackArguments: true
24BinPackParameters: true
25BreakBeforeBinaryOperators: None
26BreakBeforeBraces: Attach
27BreakBeforeTernaryOperators: true
28BreakConstructorInitializers: BeforeColon
29BreakInheritanceList: BeforeColon
30BreakStringLiterals: true
31CompactNamespaces: false
32ConstructorInitializerAllOnOneLineOrOnePerLine: true
33ConstructorInitializerIndentWidth: 4
34ContinuationIndentWidth: 4
35Cpp11BracedListStyle: true
36DerivePointerAlignment: false
37FixNamespaceComments: true
38IncludeBlocks: Regroup
39IncludeCategories:
40 - Regex: '^<.*\.h>'
41 Priority: 1
42 - Regex: '^<.*'
43 Priority: 2
44 - Regex: '.*'
45 Priority: 3
46IndentCaseLabels: true
47IndentPPDirectives: None
48IndentWrappedFunctionNames: false
49KeepEmptyLinesAtTheStartOfBlocks: false
50MaxEmptyLinesToKeep: 1
51NamespaceIndentation: None
52PointerAlignment: Left
53ReflowComments: true
54SortIncludes: true
55SortUsingDeclarations: true
56SpaceAfterCStyleCast: false
57SpaceAfterTemplateKeyword: true
58SpaceBeforeAssignmentOperators: true
59SpaceBeforeCpp11BracedList: false
60SpaceBeforeCtorInitializerColon: true
61SpaceBeforeInheritanceColon: true
62SpaceBeforeParens: ControlStatements
63SpaceBeforeRangeBasedForLoopColon: true
64SpaceInEmptyParentheses: false
65SpacesBeforeTrailingComments: 2
66SpacesInAngles: false
67SpacesInContainerLiterals: false
68SpacesInCStyleCastParentheses: false
69SpacesInParentheses: false
70SpacesInSquareBrackets: false
71Standard: Cpp11