linux-config/roles/tmux_user/tasks/main.yml

19 lines
346 B
YAML
Raw Normal View History

2021-10-22 11:45:20 +00:00
- name: Install tmux
become: true
package:
name: tmux
state: present
2021-10-22 11:45:20 +00:00
- name: Install tmux plugin manager
git:
repo: https://github.com/tmux-plugins/tpm
dest: ~/.tmux/plugins/tpm
update: yes
version: master
2021-10-22 11:45:20 +00:00
- name: Copy tmux config file
copy:
src: dotfiles/tmux.conf
dest: ~/.tmux.conf
mode: preserve