-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdotfiles.yaml
More file actions
56 lines (50 loc) · 1.4 KB
/
Copy pathdotfiles.yaml
File metadata and controls
56 lines (50 loc) · 1.4 KB
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
- name: Dotfiles
hosts: localhost
connection: local
vars:
home: "{{ ansible_facts['user_dir'] }}"
xdg_config_home: "{{ home }}/.config"
fish_config_dir: "{{ xdg_config_home }}/fish"
nvim_config_dir: "{{ xdg_config_home }}/nvim"
# Node.js packages
node_packages:
- name: typescript
version: 5.9.3
- name: typescript-language-server
version: 5.1.0
- name: "@vue/language-server"
version: 3.1.3
- name: "@vue/typescript-plugin"
version: 3.1.3
# Fonts
fonts:
- url: https://github.com/be5invis/Iosevka/releases/download/v34.1.0/PkgTTC-Iosevka-34.1.0.zip
files:
- Iosevka-Bold.ttc
- Iosevka-ExtraBold.ttc
- Iosevka-ExtraLight.ttc
- Iosevka-Heavy.ttc
- Iosevka-Light.ttc
- Iosevka-Medium.ttc
- Iosevka-Regular.ttc
- Iosevka-SemiBold.ttc
- Iosevka-Thin.ttc
- url: https://github.com/rsms/inter/releases/download/v4.1/Inter-4.1.zip
files:
- Inter.ttc
tasks:
- name: Configs
ansible.builtin.import_tasks:
file: configs/main.yaml
tags:
- configs
- name: Node.js packages
ansible.builtin.import_tasks:
file: node_packages/main.yaml
tags:
- node_packages
- name: Import Fonts tasks
ansible.builtin.import_tasks:
file: fonts/main.yaml
tags:
- fonts