dotfiles-ansible/roles/tmux/tasks/main.yml

19 lines
332 B
YAML

---
- name: Create config directory
file:
path: ~/.config/tmux
state: directory
- name: Copy config
template:
src: tmux.j2
dest: ~/.config/tmux/tmux.conf
force: yes
- name: Clone tpm
git:
depth: 1
update: yes
repo: https://github.com/tmux-plugins/tpm.git
dest: ~/.config/tmux/plugins/tpm