Add tmux role
This commit is contained in:
parent
0a1820a075
commit
e279c9b5d1
3 changed files with 14 additions and 1 deletions
|
@ -14,5 +14,5 @@
|
|||
- python
|
||||
- readline
|
||||
#- ssh
|
||||
#- tmux
|
||||
- tmux
|
||||
- vim
|
||||
|
|
13
roles/tmux/tasks/main.yml
Normal file
13
roles/tmux/tasks/main.yml
Normal 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
|
||||
|
Loading…
Add table
Reference in a new issue