flake-modules/new-plugin: init

Allows quickly creating new plugins to help fulfill plugin creation
requests.
This commit is contained in:
Austin Horstman 2024-12-09 22:57:02 -06:00
parent a9578bcae5
commit 35b6d9bc9d
No known key found for this signature in database
2 changed files with 136 additions and 0 deletions

View file

@ -116,6 +116,11 @@
command = ''${pkgs.python3.interpreter} ${./locate-lsp-packages.py}'';
help = "Locate (with nix-index) LSP servers in nixpkgs";
}
{
name = "new-plugin";
command = ''${pkgs.python3.interpreter} ${./new-plugin.py} "$@"'';
help = "Create a new plugin";
}
];
};
};