2022-09-11 20:55:30 +02:00
|
|
|
- name: Clone tmux dotfiles
|
|
|
|
become: no
|
|
|
|
git:
|
2022-11-19 18:15:26 +01:00
|
|
|
repo: https://git.wojciechkozlowski.eu/config/tmux.git
|
2022-09-11 20:55:30 +02:00
|
|
|
dest: .tmux
|
|
|
|
recursive: yes
|
|
|
|
|
|
|
|
- name: Configure tmux
|
|
|
|
become: no
|
|
|
|
copy:
|
2022-09-21 23:57:15 +02:00
|
|
|
src: ./filesystem/common/home/user/tmux.conf
|
2022-09-11 20:55:30 +02:00
|
|
|
dest: .tmux.conf
|
|
|
|
mode: 0644
|
|
|
|
|
|
|
|
- name: Configure bashrc
|
|
|
|
become: no
|
|
|
|
copy:
|
2022-09-21 23:57:15 +02:00
|
|
|
src: ./filesystem/common/home/user/bashrc
|
2022-09-11 20:55:30 +02:00
|
|
|
dest: .bashrc
|
|
|
|
mode: 0644
|
|
|
|
|
|
|
|
# On first tmux launch install plugins with <Ctrl + a + I>
|