tvl-depot/tools/emacs-pkgs/tvl/default.nix
Vincent Ambo e7f8bdd548 feat(emacs-pkgs/tvl): Add magit shortcuts for reviews & co
Introduces two new shortcuts in the magit popup for pushing:

* R: Push for review
* S: Push to submit

The existing "P" command remains, but has been renamed to
"rubberstamp" and documented with a warning.

To make this work across people's different setups, customisation
options for TVL-specific code are being added.

Change-Id: I48e75db55b5f793342fc898093629e437f58dcb2
Reviewed-on: https://cl.tvl.fyi/c/depot/+/503
Reviewed-by: glittershark <grfn@gws.fyi>
2020-06-19 17:54:46 +00:00

10 lines
150 B
Nix

{ pkgs, ... }:
with pkgs.emacsPackages;
trivialBuild rec {
pname = "tvl";
version = "1.0";
src = ./tvl.el;
packageRequires = [ magit s ];
}