Add gitconfig

This commit is contained in:
Johannes Rothe 2021-08-27 17:53:07 +02:00
parent bd30653105
commit 21c8353b29
3 changed files with 13 additions and 7 deletions

View File

@ -2,10 +2,3 @@ Ansible must be installed.
Invoke with Invoke with
`ansible-playbook -i hosts.ini dotfiles.yml -K` `ansible-playbook -i hosts.ini dotfiles.yml -K`
TODO
* monokai scheme
* gitconfig
* make idempotent
* firefox und addons/filterlisten

View File

@ -0,0 +1,10 @@
[user]
email = mail@johannes-rothe.de
name = Johannes Rothe
[core]
editor = vim
[alias]
ci = commit
st = status
co = checkout
br = branch

View File

@ -54,6 +54,7 @@
- '{{home}}/.config/i3/config' - '{{home}}/.config/i3/config'
- '{{home}}/.config/i3status/config' - '{{home}}/.config/i3status/config'
- '{{home}}/.config/rofi/config' - '{{home}}/.config/rofi/config'
- '{{home}}/.gitconfig'
- name: Make sure folders exist - name: Make sure folders exist
file: file:
@ -89,3 +90,5 @@
dest: '{{home}}/.config/fish' dest: '{{home}}/.config/fish'
- src: '{{files_dir}}/wallpaper' - src: '{{files_dir}}/wallpaper'
dest: '{{home}}/pictures/wallpaper' dest: '{{home}}/pictures/wallpaper'
- src: '{{files_dir}}/gitconfig'
dest: '{{home}}/.gitconfig'