diff --git a/roles/tmux/tasks/.main.yml.swp b/roles/tmux/tasks/.main.yml.swp new file mode 100644 index 0000000..da76f11 Binary files /dev/null and b/roles/tmux/tasks/.main.yml.swp differ diff --git a/roles/tmux/tasks/main.yml b/roles/tmux/tasks/main.yml new file mode 100644 index 0000000..0091816 --- /dev/null +++ b/roles/tmux/tasks/main.yml @@ -0,0 +1,12 @@ +--- + +- name: Ensure tmux is installed + package: + name: tmux + state: present + +- name: Template config file into home folder + template: + src: tmux.conf.j2 + dest: ~/.tmux.conf + diff --git a/roles/tmux/templates/tmux.conf b/roles/tmux/templates/tmux.conf.j2 similarity index 100% rename from roles/tmux/templates/tmux.conf rename to roles/tmux/templates/tmux.conf.j2