24 lines
524 B
YAML
24 lines
524 B
YAML
|
---
|
||
|
- block:
|
||
|
|
||
|
- name: "clone tmux dotfiles"
|
||
|
ansible.builtin.git:
|
||
|
repo: "https://git.wojciechkozlowski.eu/config/tmux.git"
|
||
|
dest: ".tmux"
|
||
|
recursive: true
|
||
|
|
||
|
# On first tmux launch install plugins with <Ctrl + a + I>
|
||
|
- name: "configure tmux"
|
||
|
ansible.builtin.copy:
|
||
|
src: "./tmux.conf"
|
||
|
dest: ".tmux.conf"
|
||
|
mode: 0644
|
||
|
|
||
|
- name: "configure bashrc"
|
||
|
ansible.builtin.copy:
|
||
|
src: "./bashrc"
|
||
|
dest: ".bashrc"
|
||
|
mode: 0644
|
||
|
|
||
|
become: false
|