Merge remote-tracking branch 'refs/remotes/origin/main'

This commit is contained in:
muon 2025-05-16 13:30:12 +00:00
commit fbc6776dab
3 changed files with 56 additions and 46 deletions

View file

@ -40,6 +40,8 @@ in {
glsl_analyzer
# wgsl_analyzer
# Python
black
];
programs.direnv = {
@ -99,6 +101,14 @@ in {
name = "wgsl";
language-servers = [ "wgsl" ];
}
{
name = "python";
auto-format = true;
formatter = {
command = "${pkgs.black}/bin/black";
args = [ "-" "--quiet" "--line-length=79" ];
};
}
];
};
};