/ plugins / comment.nix
comment.nix
1  { inputs, mkPlugin, ... }:
2  mkPlugin {
3    name = "comment";
4    src = inputs.comment;
5    config = ''
6      require("comment").setup {}
7    '';
8  }