-
Notifications
You must be signed in to change notification settings - Fork 0
/
btv.yml
43 lines (38 loc) · 818 Bytes
/
btv.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# file: btv.yml
---
- name: Install my tools
hosts: localhost
connection: local
gather_facts: false
roles:
- role: V01dDweller.vim_install
tags: vim
become: true
- role: vim_addons
tags:
- vim
- vim_addons
- role: nerd_font_install
tags: fonts
- role: V01dDweller.tmux_install
tags: tmux
become: true
- role: tmux_addons
tags:
- tmux
- tmux_addons
post_tasks:
- name: Copying bash files
ansible.builtin.copy:
src: bash/{{ item }}
dest: ~/{{ item }}
mode: '0644'
loop:
- .LESS_TERMCAP
- .bash_profile
- .bash_prompt.sh
- .bashrc
tags:
- bash
...
# vim: ft=ansible syntax=yaml.ansible nu nowrap relativenumber colorcolumn=80