mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 14:32:13 +02:00
16 lines
270 B
YAML
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/
|