13 lines
257 B
YAML
13 lines
257 B
YAML
---
|
|
- name: Create the tmux config directory
|
|
file:
|
|
path: ~/.config/tmux
|
|
state: directory
|
|
|
|
- name: Deploy tmux config
|
|
file:
|
|
src: "{{ role_path }}/files/tmux.conf"
|
|
dest: ~/.config/tmux/tmux.conf
|
|
state: link
|
|
force: yes
|
|
|