Files
dotfiles/ansible/roles/git/tasks/main.yml
T

16 lines
270 B
YAML

---
- name: Install Git
become: true
pacman:
name: git
state: present
- name: Install LazyGit (Git TUI)
become: true
pacman:
name: lazygit
state: present
- name: Copy the configuration for Git
synchronize:
src: .gitconfig
dest: /$HOME/