Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions home/ssh/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Host github.com
AddKeysToAgent yes
UseKeychain yes
IgnoreUnknown UseKeychain
IdentityFile ~/.ssh/id_ed25519
User git
3 changes: 3 additions & 0 deletions install.conf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
force: true
~/.editorconfig: home/editorconfig
~/.yarnrc.yml: home/yarnrc.yml
~/.ssh/config: home/ssh/config

~/.config/git/config: xdg/git/config
~/.config/git/attributes: xdg/git/attributes
Expand All @@ -26,6 +27,8 @@
~/.config/zellij/config.kdl: xdg/zellij/config.kdl
~/.config/direnv/direnv.toml: xdg/direnv/direnv.toml
~/.config/direnv/direnvrc: xdg/direnv/direnvrc
~/.config/nix/nix.conf: xdg/nix/nix.conf
~/.config/gh/config.yml: xdg/gh/config.yml

- shell:
- [git submodule update --init --recursive, Installing submodules]
Expand Down
17 changes: 17 additions & 0 deletions xdg/gh/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# The current version of the config schema
version: 1
# What protocol to use when performing git operations. Supported values: ssh, https
git_protocol: https
# What editor gh should run when creating issues, pull requests, etc. If blank, will refer to environment.
editor:
# When to interactively prompt. This is a global config that cannot be overridden by hostname. Supported values: enabled, disabled
prompt: enabled
# 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.
pager:
# Aliases allow you to create nicknames for gh commands
aliases:
co: pr checkout
# The path to a unix socket through which send HTTP connections. If blank, HTTP traffic will be handled by net/http.DefaultTransport.
http_unix_socket:
# What web browser gh should use when opening URLs. If blank, will refer to environment.
browser:
1 change: 1 addition & 0 deletions xdg/nix/nix.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
experimental-features = nix-command flakes
Loading