gas config for helix

This commit is contained in:
twoneis 2024-01-25 06:23:12 +01:00
parent a00a2c30c2
commit a7049dcc52
2 changed files with 16 additions and 0 deletions

View file

@ -4,5 +4,6 @@
defaultEditor = true;
extraPackages = with pkgs; [ nil marksman ];
settings = import ./helix-config.nix;
languages = import ./helix-languages.nix;
};
}

View file

@ -0,0 +1,15 @@
{
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"];
}];
}