cpp to helix

This commit is contained in:
twoneis 2024-08-12 02:24:33 +02:00
parent e0b023657e
commit 2cb7c48d53

View file

@ -28,5 +28,11 @@
formatter = { command = "clang-format"; args = [ "-style=file" ]; }; formatter = { command = "clang-format"; args = [ "-style=file" ]; };
indent = { tab-width = 8; unit = " "; }; indent = { tab-width = 8; unit = " "; };
file-types = [ "c" "h" ]; file-types = [ "c" "h" ];
} {
name = "cpp";
auto-format = true;
formatter = { command = "clang-format"; args = [ "-style=file" ]; };
indent = { tab-width = 8; unit = " "; };
file-types = [ "cpp" "hpp" ];
}]; }];
} }