blob: 66ebc8af27b82f40a56550729f4026a32313ed76 (
plain)
1
2
3
4
5
6
7
8
9
|
#+title: Clang-Format Settings
Use a style similar to Linux kernel style (but with 4-wide indents and spaces over tabs).
#+begin_src yaml :tangle .clang-format
BasedOnStyle: LLVM
IndentWidth: 4
BreakBeforeBraces: Linux
AllowShortIfStatementsOnASingleLine: false
IndentCaseLabels: false
#+end_src
|