11 lines
260 B
YAML
11 lines
260 B
YAML
- name: check if tpm is installed
|
|
become_user: user
|
|
stat:
|
|
path: ~/.tmux/plugins/tpm
|
|
register: tpm
|
|
|
|
- name: Download TPM
|
|
become_user: user
|
|
shell: git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
|
|
when: tpm.stat.exists == false
|