mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-10-31 21:15:25 +00:00
Tmux fix: plugins are not symlinked but installed.
Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
This commit is contained in:
parent
9c0888c1f1
commit
c3784e0a65
1 changed files with 17 additions and 3 deletions
|
@ -4,10 +4,24 @@
|
||||||
name: tmux
|
name: tmux
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: Linking up tmux config folder
|
- name: Verifying tmux config folder
|
||||||
file:
|
file:
|
||||||
src: "{{ playbook_dir }}/files/dotfiles/tmux"
|
path: ~/.config/tmux
|
||||||
dest: ~/.config/tmux
|
state: directory
|
||||||
|
mode: '0755'
|
||||||
|
|
||||||
|
- name: Linking up tmux config
|
||||||
|
file:
|
||||||
|
src: "{{ playbook_dir }}/files/dotfiles/tmux/tmux.conf"
|
||||||
|
dest: ~/.config/tmux/tmux.conf
|
||||||
state: link
|
state: link
|
||||||
owner: "{{ ansible_user_id }}"
|
owner: "{{ ansible_user_id }}"
|
||||||
group: "{{ ansible_user_id }}"
|
group: "{{ ansible_user_id }}"
|
||||||
|
|
||||||
|
- name: Install tmux plugin manager
|
||||||
|
git:
|
||||||
|
repo: https://github.com/tmux-plugins/tpm
|
||||||
|
dest: ~/.config/tmux/plugins/tpm
|
||||||
|
update: yes
|
||||||
|
version: master
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue