-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpersonalize.yml
62 lines (49 loc) · 1.37 KB
/
personalize.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
- import_playbook: core.yml
- name: Personalization Profile
hosts: localhost
connection: local
vars:
is_mac: "{{ ansible_distribution == 'MacOSX' }}"
environment:
PATH: "{{ ansible_env.HOME }}/.nvm/versions/node/v16.13.1/bin:/home/linuxbrew/.linuxbrew/bin:/usr/local/texlive/2021/bin/universal-darwin:{{ ansible_env.PATH }}"
tasks:
- name: VSCode Extensions
include_tasks: tasks/common/code_install.yml
loop:
- nhoizey.gremlins
- GitHub.copilot
- nobuhito.printcode
- name: Slack
import_tasks: tasks/tools/slack.yml
- name: Alacritty
import_tasks: tasks/tools/alacritty.yml
- name: Terminal tools
include_tasks: tasks/common/brew_install.yml
loop:
- bat
- git-delta
- duf
- fd
- tldr
- bottom
- httpie
- name: Delta git diff
blockinfile:
path: ~/.gitconfig
create: true
block: |
[core]
pager = delta
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true # use n and N to move between diff sections
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
- name: Neovim
include_tasks: tasks/common/brew_install.yml
loop:
- neovim
- yabai