From 212c0487b60c72da366d2666c40c9894cec20596 Mon Sep 17 00:00:00 2001 From: neodarz Date: Thu, 5 Sep 2019 07:07:48 +0200 Subject: Add git config --- README.md | 1 + config.yaml | 4 ++++ dotfiles/gitconfig | 10 ++++++++++ 3 files changed, 15 insertions(+) create mode 100644 dotfiles/gitconfig diff --git a/README.md b/README.md index 7e64100..5a941cf 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ aria2 > aria2 deamon alacritty > terminal config cheat > cheatsheets management + git > global git config i3pystatus > i3 bar window manager replacement config systemd > user services for differents application ``` diff --git a/config.yaml b/config.yaml index 53cc3b8..2be2061 100644 --- a/config.yaml +++ b/config.yaml @@ -18,6 +18,9 @@ dotfiles: d_cheat: src: cheat dst: ~/.cheat + f_gitconfig: + src: gitconfig + dst: ~/.gitconfig profiles: unicorn: dotfiles: @@ -26,6 +29,7 @@ profiles: - d_aria2 - d_systemd - d_cheat + - f_gitconfig fenec: dotfiles: - d_i3pystatus diff --git a/dotfiles/gitconfig b/dotfiles/gitconfig new file mode 100644 index 0000000..5a2a1c0 --- /dev/null +++ b/dotfiles/gitconfig @@ -0,0 +1,10 @@ +[user] + email = neodarz@neodarz.net + name = neodarz + signingkey = B0811718191581D5 +[color] + ui = auto +[commit] + gpgsign = true +[gpg] + program = gpg -- cgit v1.2.1