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.

chore(global): add termux specific bashrc and gitconfig

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

+37 -5
+8
.bashrc
··· 1 + #!/usr/bin/env bash 2 + 3 + # Note that you need to install termux-packages first then 4 + # run "sv-enable sshd" for this to work. 5 + export SSH_AUTH_SOCK="${PREFIX}/var/run/ssh-agent.socket" 6 + 7 + # needed for gpg to work 8 + export GPG_TTY=$(tty)
+29 -5
.gitconfig
··· 1 + # user details 2 + [user] 3 + name = Andrei Jiroh Halili 4 + email = ajhalili2006@andreijiroh.dev 5 + signingkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEXuD3hJwInlcHs3wkXWAWNo8es3bPAd2e8ipjyqgGp2 ajhalili2006@andreijiroh.dev (2022 SSH key)" 6 + 7 + # core settings 8 + [core] 9 + editor = nano 10 + 11 + # gpg stuff 12 + [gpg] 13 + format = ssh 14 + [commit] 15 + sign = true 16 + [tag] 17 + sign = true 18 + 19 + [format] 20 + signoff = true 21 + 22 + # Use GitHub CLI and GitLab CLI for Git-over-HTTP auth 1 23 [credential "https://github.com"] 2 24 helper = !/data/data/com.termux/files/usr/bin/gh auth git-credential 3 25 [credential "https://gist.github.com"] 4 26 helper = !/data/data/com.termux/files/usr/bin/gh auth git-credential 5 - [user] 6 - name = ~ajhalili2006 7 - email = ajhalili2006@andreijiroh.dev 8 27 [credential "https://gitlab.com"] 9 28 helper = !/data/data/com.termux/files/usr/bin/glab auth git-credential 10 - [core] 11 - editor = nano 29 + 30 + # lfs prep 31 + [filter "lfs"] 32 + clean = git-lfs clean -- %f 33 + smudge = git-lfs smudge -- %f 34 + process = git-lfs filter-process 35 + required = true