nix-config/modules/utils/helix-languages.conf.nix
2025-02-28 19:32:44 +01:00

47 lines
1.1 KiB
Nix

{...}: {
language-server = {
asm-lsp = {
command = "asm-lsp";
};
};
language = [{
name = "nix";
auto-format = true;
formatter.command = "alejandra";
} {
name = "gas";
scope = "source.gas";
auto-format = false;
language-servers = [ "asm-lsp" ];
indent = { tab-width = 8; unit = " "; };
roots = [];
file-types = [ "S" ];
} {
name = "json";
auto-format = true;
formatter = { command = "prettier"; args = [ "--parser" "json" ]; };
} {
name = "jsonc";
auto-format = true;
formatter.command = "prettier";
formatter.args = [ "--parser" "jsonc" ];
} {
name = "c";
auto-format = true;
formatter = { command = "clang-format"; args = [ "-style=file" ]; };
indent = { tab-width = 8; unit = " "; };
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" ];
} {
name = "typst";
auto-format = true;
formatter = { command = "typstfmt"; };
file-types = [ "typ" ];
}];
}