dotfiles/common/.flake/home/clang-format.nix.org
2024-10-07 18:55:30 -05:00

354 B

Clang Format Default Options

  { config, pkgs, ... }:

  {
    home.file.".clang-format".text = ''
      BasedOnStyle: LLVM
      IndentWidth: 4
      BreakBeforeBraces: Linux
      AllowShortIfStatementsOnASingleLine: false
      IndentCaseLabels: false
    '';
  }