[FIX] tmux.conf: support old tmux versions (fixes #9)

This commit is contained in:
Jannik Beyerstedt 2020-03-27 23:30:50 +01:00
parent 6750f1c370
commit 9183c3b0dc
2 changed files with 21 additions and 1 deletions

View file

@ -43,7 +43,6 @@
dest: "{{ item.dest }}"
with_items:
- { src: "{{ role_path }}/files/_gitignore_global", dest: ".gitignore_global" }
- { src: "{{ role_path }}/files/_tmux.conf", dest: ".tmux.conf" }
- { src: "{{ role_path }}/files/_vimrc", dest: ".vimrc" }
- { src: "{{ role_path }}/files/_oh-my-zsh/jtbx.zsh-theme", dest: ".oh-my-zsh/custom/themes/jtbx.zsh-theme" }
- name: usersettings - Set zshrc
@ -55,6 +54,10 @@
src: "{{ role_path }}/templates/_gitconfig.j2"
dest: "{{ ansible_user_dir }}/.gitconfig"
when: usersetup_gitconfig == true
- name: usersettings - Set tmux.conf
template:
src: "{{ role_path }}/templates/_tmux.conf.j2"
dest: "{{ ansible_user_dir }}/.tmux.conf"
- name: usersettings - Create .vim directory
file: