plugins/none-ls: add asmfmt (#1064)

Add an option to enable asmfmt in none-ls sources.
This commit is contained in:
Mateus Alves 2024-02-11 17:49:33 -03:00 committed by GitHub
parent 30bc345dee
commit 2b3581e41a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View file

@ -113,6 +113,9 @@ with lib; let
alejandra = { alejandra = {
package = pkgs.alejandra; package = pkgs.alejandra;
}; };
asmfmt = {
package = pkgs.asmfmt;
};
astyle = { astyle = {
package = pkgs.astyle; package = pkgs.astyle;
}; };

View file

@ -87,6 +87,7 @@
}; };
formatting = { formatting = {
alejandra.enable = true; alejandra.enable = true;
asmfmt.enable = true;
astyle.enable = true; astyle.enable = true;
bean_format.enable = true; bean_format.enable = true;
black.enable = true; black.enable = true;