Personal dotfiles for Linux, mostly for Nixpkgs/NixOS-based and Termux setups. Mirrored using GitLab's push mirroring feature. gitlab.com/andreijiroh-dev/dotfiles
linux dotfiles
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add some aliases for GitHub CLI

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.xyz>

+5 -1
+5 -1
.config/gh/config.yml
··· 1 + # The current version of the config schema 2 + version: 1 1 3 # What protocol to use when performing git operations. Supported values: ssh, https 2 4 git_protocol: https 3 5 # What editor gh should run when creating issues, pull requests, etc. If blank, will refer to environment. 4 6 editor: 5 7 # When to interactively prompt. This is a global config that cannot be overridden by hostname. Supported values: enabled, disabled 6 8 prompt: enabled 7 - # A pager program to send command output to, e.g. "less". Set the value to "cat" to disable the pager. 9 + # A pager program to send command output to, e.g. "less". If blank, will refer to environment. Set the value to "cat" to disable the pager. 8 10 pager: 9 11 # Aliases allow you to create nicknames for gh commands 10 12 aliases: 11 13 co: pr checkout 14 + login: auth login 15 + logout: auth logout 12 16 clone: repo clone 13 17 mr: pr 14 18 fork: repo fork