nix-config/modules/home/editor/helix-languages.nix
2024-02-01 02:59:49 +01:00

17 lines
296 B
Nix

{
language-server = {
asm-lsp = {
command = "asm-lsp";
};
};
language = [{
name = "gas";
scope = "source.gas";
auto-format = false;
language-servers = [ "asm-lsp" ];
indent = { tab-width = 8; unit = " "; };
roots = [];
file-types = ["S"];
}];
}