23 lines
461 B
YAML
23 lines
461 B
YAML
- name: Clone tmux dotfiles
|
|
become: no
|
|
git:
|
|
repo: https://gitlab.wojciechkozlowski.eu/config/tmux.git
|
|
dest: .tmux
|
|
recursive: yes
|
|
|
|
- name: Configure tmux
|
|
become: no
|
|
copy:
|
|
src: ./filesystem/common/home/user/tmux.conf
|
|
dest: .tmux.conf
|
|
mode: 0644
|
|
|
|
- name: Configure bashrc
|
|
become: no
|
|
copy:
|
|
src: ./filesystem/common/home/user/bashrc
|
|
dest: .bashrc
|
|
mode: 0644
|
|
|
|
# On first tmux launch install plugins with <Ctrl + a + I>
|