-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.yml
executable file
·53 lines (52 loc) · 1.03 KB
/
site.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
#!/usr/bin/env ansible-playbook
---
- name: Install dotfiles
hosts: devpcs
roles:
- dotfiles
vars:
git_name: Ronald Weber
git_email: [email protected]
git_aliases:
ap: add -p
b: branch
ci: commit
cia: commit --amend
cim: commit -m
co: checkout
cob: checkout -b
di: diff
ds: diff --staged
f: fetch --all --tags
l: log
lp: log -p
pu: push
pl: pull
rbi: rebase --interactive
s: stash
sp: stash pop
st: status
t: tag
zsh_aliases:
c: clear
ca: cargo
cb: cargo build
cbr: cargo build --release
cc: cargo clippy
cf: cargo fmt
cr: cargo run
crr: cargo run --release
ct: cargo test
g: git
gl: git log --oneline
gk: gitk --all&
mhz: watch -n 1 "grep MHz /proc/cpuinfo"
py: ipython
v: nvim
zzz: systemctl suspend
- name: Enable ssh-agent
hosts: devpcs
roles:
- ssh-agent
vars:
ssh_agent_key_timeout: 3600