15 lines
354 B
Org Mode
15 lines
354 B
Org Mode
#+title: Clang Format Default Options
|
|
|
|
#+begin_src nix :tangle ~/.flake/home/clang-format.nix :mkdirp yes
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.file.".clang-format".text = ''
|
|
BasedOnStyle: LLVM
|
|
IndentWidth: 4
|
|
BreakBeforeBraces: Linux
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
IndentCaseLabels: false
|
|
'';
|
|
}
|
|
#+end_src
|