mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-10-31 21:15:25 +00:00
17 lines
306 B
YAML
17 lines
306 B
YAML
|
- name: Install tmux
|
||
|
become: true
|
||
|
package:
|
||
|
name: tmux
|
||
|
state: latest
|
||
|
|
||
|
- name: Install tmux plugin manager
|
||
|
git:
|
||
|
repo: https://github.com/tmux-plugins/tpm
|
||
|
dest: ~/.tmux/plugins/tpm
|
||
|
update: yes
|
||
|
|
||
|
- name: Copy tmux config file
|
||
|
copy:
|
||
|
src: dotfiles/tmux.conf
|
||
|
dest: ~/.tmux.conf
|