-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal.yml
78 lines (66 loc) · 1.41 KB
/
local.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
---
- name: Setup workstation
hosts: localhost
become: yes
pre_tasks:
- name: Update cache
package:
update_cache: true
tags:
- always
- zsh
- nvim
tasks:
- name: Install git
package:
name: git
state: present
tags:
- zsh
- nvim
- name: Install essential packages
package:
name:
- xclip
- wl-clipboard
- unzip
- curl
- wget
state: present
tags:
- nvim
- tmux
- zsh
- name: Install tmux
package:
name: tmux
state: present
tags:
- tmux
# install fzf before zsh (prerequisite for zsh's history search)
- name: Install fzf package
package:
name: fzf
state: present
tags:
- nvim
- scripts
# zsh should be installed first so that other packages can add key bindings
- include_tasks: tasks/zsh.yml
tags: zsh
- include_tasks: tasks/nvim.yml
tags: nvim
- include_tasks: tasks/stow.yml
tags:
- zshrc
- tmux
- gitconfig
- stow
- include_tasks: tasks/scripts.yml
tags: scripts
- include_tasks: tasks/kitty.yml
tags: kitty
- include_tasks: tasks/optional_packages.yml
tags: optional_packages
- include_tasks: tasks/sway.yml
tags: sway