diff options
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 | 
