--- - block: - name: "user : 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 - name: "user : configure tmux" ansible.builtin.copy: src: "./user/tmux.conf" dest: ".tmux.conf" mode: 0644 - name: "user : configure bashrc" ansible.builtin.copy: src: "./user/bashrc" dest: ".bashrc" mode: 0644 become: false