Update dotfiles.

This commit is contained in:
Jordan Bancino 2024-08-09 15:08:47 -04:00
parent d00686c302
commit 40de72c20d
Signed by: jordan
SSH key fingerprint: SHA256:lRUOrki6+e1vo47tj4BoyALNvOhW/yGXq08lqmaNvkw
2 changed files with 5 additions and 19 deletions

View file

@ -3,7 +3,7 @@
# Please adapt and uncomment the following lines: # Please adapt and uncomment the following lines:
name = Jordan Bancino name = Jordan Bancino
email = jordan@bancino.net email = jordan@bancino.net
signingkey = ~/.ssh/id_ed25519.pub signingkey = ~/.ssh/id_ed25519.personal.pub
[push] [push]
autoSetupRemote = yes autoSetupRemote = yes
followtags = true followtags = true
@ -20,8 +20,8 @@
prune = true prune = true
[receive] [receive]
fsckObjects = true fsckObjects = true
[url "git.github.com:"] #[url "git.github.com:"]
insteadOf = "https://github.com" # insteadOf = "https://github.com"
[branch] [branch]
sort = -comitterdate sort = -comitterdate
[diff] [diff]
@ -33,3 +33,5 @@
gpgsign = true gpgsign = true
[tag] [tag]
gpgsign = true gpgsign = true
[http]
postBuffer = 157286400

View file

@ -239,22 +239,6 @@ generate_prompt() {
PS1="\$(generate_prompt)" PS1="\$(generate_prompt)"
if [ "$(whoami)" = "win7" ]; then
printf 'Microsoft Windows [Version 6.1.7601] \nCopyright <c> 2009 Microsoft Corporation. All rights reserved.\n\n'
generate_prompt() {
printf "C:%s> " "$(pwd | sed -e 's|^/home/|/Users/|g' -e 's|/|\\\\|g')"
}
PS1="\$(generate_prompt)"
title () {
echo -ne "\033]30;$@\007"
}
title "C:\Windows\system32.cmd.exe"
fi
# #
# Startup functions - these are executed on every shell start. # Startup functions - these are executed on every shell start.
# #