refactor(tmux): move config to .config/tmux
This commit is contained in:
parent
5aa64705ea
commit
b067e9f785
|
@ -6,8 +6,13 @@
|
||||||
state: latest
|
state: latest
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
- name: Link .tmux.conf file
|
- name: Directory
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
src: "{{ role_path }}/files/.tmux.conf"
|
path: "{{ ansible_user_dir }}/.config/tmux"
|
||||||
dest: "{{ ansible_user_dir }}/.tmux.conf"
|
state: directory
|
||||||
|
|
||||||
|
- name: Configuration
|
||||||
|
ansible.builtin.file:
|
||||||
|
src: "{{ role_path }}/files/tmux.conf"
|
||||||
|
dest: "{{ ansible_user_dir }}/.config/tmux/tmux.conf"
|
||||||
state: link
|
state: link
|
||||||
|
|
Loading…
Reference in a new issue