diff options
| author | neodarz <neodarz@neodarz.net> | 2019-09-05 07:07:48 +0200 | 
|---|---|---|
| committer | neodarz <neodarz@neodarz.net> | 2019-09-05 07:07:48 +0200 | 
| commit | 212c0487b60c72da366d2666c40c9894cec20596 (patch) | |
| tree | 136d7e858c7a1cda23033ec56205ef12dbf7a0a9 | |
| parent | e0c0d4b38cde20e2300e86b69414dd9851b47456 (diff) | |
| download | dotfiles-212c0487b60c72da366d2666c40c9894cec20596.tar.xz dotfiles-212c0487b60c72da366d2666c40c9894cec20596.zip | |
Add git config
Diffstat (limited to '')
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | config.yaml | 4 | ||||
| -rw-r--r-- | dotfiles/gitconfig | 10 | 
3 files changed, 15 insertions, 0 deletions
| @@ -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 | 
