Archived
1
0
Fork 0

git: Move to ~/.config as well

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
This commit is contained in:
Christoph Heiss 2023-01-04 22:54:58 +01:00
parent 450d6738cc
commit b1ecfe57ff
Signed by: c8h4
GPG key ID: 9C82009BEEDEA0FF
3 changed files with 6 additions and 6 deletions

View file

@ -9,11 +9,10 @@ cd "$(dirname "${BASH_SOURCE[0]}")"
MODE=${1:-}
RSYNC="rsync --archive --info=name1"
$RSYNC gitconfig $HOME/.gitconfig
$RSYNC latexmkrc $HOME/.latexmkrc
$RSYNC zshrc $HOME/.zshrc
DIRS="nvim tmux"
DIRS="git nvim tmux"
[ "$MODE" != --headless ] && DIRS+=" alacritty sway swaylock waybar waybar mako wofi"

View file

@ -29,7 +29,7 @@
suppresscc = self
smtpsslcertpath =
[sendemail.linux]
tocmd ="`pwd`/scripts/get_maintainer.pl --nogit --nogit-fallback --norolestats --nol"
cccmd ="`pwd`/scripts/get_maintainer.pl --nogit --nogit-fallback --norolestats --nom"
tocmd = "$(pwd)/scripts/get_maintainer.pl --nogit --nogit-fallback --norolestats --nol"
cccmd = "$(pwd)/scripts/get_maintainer.pl --nogit --nogit-fallback --norolestats --nom"
[include]
path = ~/.gitconfig_local
path = ~/.config/git/smtpconfig

View file

@ -8,10 +8,11 @@ cd "$(dirname "${BASH_SOURCE[0]}")"
MODE=${1:-}
RSYNC="rsync --archive --info=name1"
$RSYNC $HOME/.gitconfig gitconfig
$RSYNC $HOME/.latexmkrc latexmkrc
$RSYNC $HOME/.zshrc zshrc
$RSYNC --exclude smtpconfig $HOME/.config/git .
$RSYNC --exclude plugins $HOME/.config/tmux .
$RSYNC \