1
0
mirror of https://github.com/meineerde/dotfiles.git synced 2025-10-17 19:41:01 +00:00

Update gitconfig, dir specific config, custom agent script for signing

This commit is contained in:
Holger Just 2025-02-01 14:41:22 +01:00
parent 3a62614066
commit 5226a3cc3a
No known key found for this signature in database
4 changed files with 28 additions and 19 deletions

View File

@ -12,33 +12,34 @@
su = submodule update --recursive --init
# https://stackoverflow.com/a/7149602/421705
addnw = !sh -c 'git diff -U0 -w --no-color "$@" | git apply --cached --ignore-whitespace --unidiff-zero' -
[user]
name = Holger Just
email = hello@holgerjust.de
[branch]
autosetupmerge = true
autosetuprebase = always
[core]
autocrlf = false
excludesfile = ~/.gitignore_global
[color]
branch = auto
diff = auto
grep = auto
interactive = auto
ui = auto
[push]
default = tracking
recurseSubmodules = check
[core]
autocrlf = false
excludesfile = ~/.gitignore_global
[github]
user = meineerde
[credential]
helper=osxkeychain
[branch]
autosetupmerge = true
autosetuprebase = always
[fetch]
fsckobjects = true
[http]
postBuffer = 524288000
[fetch]
[push]
autoSetupRemote = true
default = upstream
recurseSubmodules = check
[receive]
fsckobjects = true
[transfer]
fsckobjects = true
[receive]
fsckobjects = true
[include]
path = ~/.gitconfig_holgerjust.de
[includeIf "gitdir:~/workspace/planio/"]
path = ~/.gitconfig_plan.io

3
.gitignore vendored
View File

@ -1 +1,2 @@
/.vim/sessions
/.vim/sessions
/.gitconfig_*

View File

@ -28,7 +28,11 @@ namespace :install do
end
files :irb, ".irbrc", ".config/irb/*.rb"
files :dot, *%w[.bash_profile .bashrc .gemrc .gitignore_global .gitconfig .ackrc .rvmrc.dotfile]
dot_files = %w[bin]
dot_files += %w[.bash_profile .bashrc .gemrc .gitignore_global .ackrc .rvmrc.dotfile]
dot_files += %w[.gitconfig .gitconfig_holgerjust.de .gitconfig_plan.io]
files :dot, *dot_files
files :vim, *%w[.vim .vimrc]
end

3
bin/strongbox-ssh-keygen Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
export SSH_AUTH_SOCK="${HOME}/.ssh/strongbox/agent.sock"
exec ssh-keygen "$@"