mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
As it can lead to conflicts between versions, I removed the additional imports. They are not needed as the program is installed by enabling the program.
28 lines
770 B
Nix
28 lines
770 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.gh = {
|
|
enable = true;
|
|
extensions = with pkgs; [
|
|
gh-copilot # Ask for assistance right in your terminal
|
|
gh-dash # Display a dashboard with pull requests and issues
|
|
gh-eco # Explore the ecosystem
|
|
gh-f # Ultimate FZF extension
|
|
gh-markdown-preview # Preview Markdown looking like on GitHub
|
|
gh-notify # Display GitHub notifications
|
|
gh-poi # Safely clean up your local branches
|
|
gh-s # Search github repositories interactively
|
|
];
|
|
settings = {
|
|
git_protocol = "ssh";
|
|
prompt = "enabled";
|
|
aliases = {
|
|
co = "pr checkout";
|
|
me = "pr list --assignee @me";
|
|
pv = "pr view";
|
|
xds = "pr list --label='team: design-system'";
|
|
};
|
|
};
|
|
};
|
|
}
|