Compare commits
2 Commits
f6e60b8417
...
c2f1cd3201
Author | SHA1 | Date | |
---|---|---|---|
c2f1cd3201 | |||
c9d2e66438 |
5
roles/bat/tasks/Darwin.yaml
Normal file
5
roles/bat/tasks/Darwin.yaml
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
- name: install homebrew package
|
||||
homebrew:
|
||||
name: bat
|
||||
state: latest
|
13
roles/bat/tasks/Debian.yaml
Normal file
13
roles/bat/tasks/Debian.yaml
Normal file
@ -0,0 +1,13 @@
|
||||
---
|
||||
- name: install apt package
|
||||
become: true
|
||||
apt:
|
||||
name: bat
|
||||
state: latest
|
||||
|
||||
- name: update bat alternative
|
||||
become: true
|
||||
alternatives:
|
||||
name: bat
|
||||
path: /usr/bin/batcat
|
||||
link: /usr/local/bin/bat
|
2
roles/bat/tasks/main.yaml
Normal file
2
roles/bat/tasks/main.yaml
Normal file
@ -0,0 +1,2 @@
|
||||
---
|
||||
- include_tasks: '{{ansible_os_family}}.yaml'
|
5
roles/tree/tasks/Darwin.yaml
Normal file
5
roles/tree/tasks/Darwin.yaml
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
- name: install homebrew pacakge
|
||||
homebrew:
|
||||
name: tree
|
||||
state: latest
|
6
roles/tree/tasks/Debian.yaml
Normal file
6
roles/tree/tasks/Debian.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
- name: install apt package
|
||||
become: true
|
||||
apt:
|
||||
name: tree
|
||||
state: latest
|
5
roles/tree/tasks/Windows.yaml
Normal file
5
roles/tree/tasks/Windows.yaml
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
- name: install choco package
|
||||
win_chocolatey:
|
||||
name: tree
|
||||
state: latest
|
2
roles/tree/tasks/main.yaml
Normal file
2
roles/tree/tasks/main.yaml
Normal file
@ -0,0 +1,2 @@
|
||||
---
|
||||
- include_tasks: '{{ansible_os_family}}.yaml'
|
@ -4,8 +4,12 @@
|
||||
roles:
|
||||
- role: zsh
|
||||
- role: tmux
|
||||
- role: git
|
||||
- role: neovim
|
||||
|
||||
- role: ag
|
||||
- role: bat
|
||||
- role: git
|
||||
- role: tree
|
||||
|
||||
- role: nodejs
|
||||
- role: python
|
||||
|
@ -13,10 +13,14 @@
|
||||
|
||||
roles:
|
||||
- role: powershell
|
||||
- role: git
|
||||
- role: neovim
|
||||
|
||||
- role: ag
|
||||
- role: git
|
||||
- role: tree
|
||||
|
||||
- role: nodejs
|
||||
- role: python
|
||||
- role: autohotkey
|
||||
|
||||
- role: 1password
|
||||
- role: autohotkey
|
||||
|
Loading…
x
Reference in New Issue
Block a user