2022-12-18 23:43:40 +01:00
|
|
|
---
|
2022-12-04 15:14:43 +01:00
|
|
|
- block:
|
|
|
|
|
2022-12-20 17:31:37 +01:00
|
|
|
- name: "clone tmux dotfiles"
|
2022-12-04 15:14:43 +01:00
|
|
|
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>
|
2022-12-20 17:31:37 +01:00
|
|
|
- name: "configure tmux"
|
2022-12-04 15:14:43 +01:00
|
|
|
ansible.builtin.copy:
|
2022-12-20 17:31:37 +01:00
|
|
|
src: "./tmux.conf"
|
2022-12-04 15:14:43 +01:00
|
|
|
dest: ".tmux.conf"
|
|
|
|
mode: 0644
|
|
|
|
|
2022-12-20 17:31:37 +01:00
|
|
|
- name: "configure bashrc"
|
2022-12-04 15:14:43 +01:00
|
|
|
ansible.builtin.copy:
|
2022-12-20 17:31:37 +01:00
|
|
|
src: "./bashrc"
|
2022-12-04 15:14:43 +01:00
|
|
|
dest: ".bashrc"
|
|
|
|
mode: 0644
|
|
|
|
|
|
|
|
become: false
|