dotfiles/nixos/.flake/home/clang-format.nix.org
2024-09-28 00:01:09 -05:00

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