Moved rust cargo env loader and added conditions and added gitconfig for arch
This commit is contained in:
parent
919121c99c
commit
fff859fcbb
3 changed files with 32 additions and 2 deletions
30
.gitconfig##d.arch
Normal file
30
.gitconfig##d.arch
Normal file
|
@ -0,0 +1,30 @@
|
|||
[user]
|
||||
name = Eric Renfro
|
||||
email = psi-jack@linux-help.org
|
||||
signingkey = 25787986B19167B89BFF55CF3159FF4CB13EBFB4
|
||||
[sendemail]
|
||||
smtpencryption = tls
|
||||
smtpserver = mx.linux-help.org
|
||||
smtpuser = eric.renfro@linux-help.org
|
||||
smtpserverport = 587
|
||||
[filter "lfs"]
|
||||
clean = git-lfs clean -- %f
|
||||
smudge = git-lfs smudge -- %f
|
||||
process = git-lfs filter-process
|
||||
required = true
|
||||
[commit]
|
||||
gpgsign = true
|
||||
[alias]
|
||||
up = !git pull --prune $@ && git submodule update --init --recursive
|
||||
[credential]
|
||||
#helper = /usr/lib/git/git-core/git-credential-store
|
||||
#helper = /usr/share/doc/git/contrib/credential/gnome-keyring/git-credential-gnome-keyring
|
||||
#helper = /usr/libexec/git-core/git-credential-libsecret
|
||||
helper = /usr/lib/git-core/git-credential-libsecret
|
||||
#helper = libsecret
|
||||
[gpg]
|
||||
program = gpg2
|
||||
[init]
|
||||
defaultBranch = master
|
||||
[pull]
|
||||
rebase = false
|
2
.profile
2
.profile
|
@ -6,4 +6,4 @@ export EDITOR=vim
|
|||
export PATH=$PATH:$HOME/bin:$HOME/go/bin
|
||||
#export QT_QPA_PLATFORMTHEME=qgnomeplatform
|
||||
|
||||
. "$HOME/.cargo/env"
|
||||
#. "$HOME/.cargo/env"
|
||||
|
|
2
.zshenv
2
.zshenv
|
@ -7,7 +7,7 @@
|
|||
: ${ZIM_HOME=${ZDOTDIR:-${HOME}}/.zim}
|
||||
# }}} End configuration added by Zim install
|
||||
|
||||
if [[ -d "$HOME/.cargo" ]]; then
|
||||
if [[ -r "$HOME/.cargo/env" ]]; then
|
||||
. "$HOME/.cargo/env"
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue