nix-dotfiles/home/programs/gh.nix

15 lines
228 B
Nix
Raw Normal View History

2024-06-02 16:24:05 +02:00
{ pkgs, ... }:
2022-03-07 16:01:52 +01:00
{
programs.gh = {
enable = true;
settings = {
gitProtocol = "ssh";
2024-06-02 16:24:05 +02:00
pager = "${pkgs.bat}/git/bat";
2022-03-07 16:01:52 +01:00
aliases = {
co = "pr checkout";
pv = "pr view";
};
};
};
}