Add tmux role

This commit is contained in:
Fernando Schauenburg 2019-11-15 19:58:27 +00:00
parent 0a1820a075
commit e279c9b5d1
3 changed files with 14 additions and 1 deletions

View file

@ -14,5 +14,5 @@
- python
- readline
#- ssh
#- tmux
- tmux
- vim

13
roles/tmux/tasks/main.yml Normal file
View file

@ -0,0 +1,13 @@
---
- 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