mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 11:02:13 +02:00
17 lines
274 B
YAML
17 lines
274 B
YAML
---
|
|
- name: Install Fish (shell)
|
|
become: true
|
|
pacman:
|
|
name: fish
|
|
state: present
|
|
- name: Setup Fish
|
|
synchronize:
|
|
delete: true
|
|
src: fish
|
|
dest: "/$HOME/.config"
|
|
- name: Setup OMF
|
|
synchronize:
|
|
delete: true
|
|
src: omf
|
|
dest: "/$HOME/.config"
|