my dotfiles for arch
0
fork

Configure Feed

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

more stuff

+19
+9
dot_gitconfig
··· 1 + [user] 2 + name = Thomas G. Lopes 3 + email = 26071571+TGlide@users.noreply.github.com 4 + [pull] 5 + rebase = true 6 + [init] 7 + defaultBranch = main 8 + [credential] 9 + helper = /usr/bin/git-credential-libsecret ; Or the correct path to your helper
+10
dot_ssh/config
··· 1 + Host vps 2 + HostName 37.221.194.92 3 + User root 4 + IdentityFile ~/.ssh/vps 5 + 6 + Host github.com 7 + HostName github.com 8 + User git 9 + IdentityFile ~/.ssh/github 10 + AddKeysToAgent yes