1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2024-12-01 16:43:53 +00:00
parent ef7e64f2b1
commit cc62f8a2b9
6 changed files with 198 additions and 12 deletions

19
treefmt.nix Normal file
View file

@ -0,0 +1,19 @@
{
projectRootFile = ".git/config";
enableDefaultExcludes = true;
settings.global.excludes = [
"LICENSE"
"*.age"
"*.envrc"
];
programs = {
alejandra.enable = true;
shfmt = {
enable = true;
indent_size = 2;
};
mdformat.enable = true;
};
}