65 lines
1.4 KiB
YAML
65 lines
1.4 KiB
YAML
---
|
|
- name: Copy urxvt Xdefault
|
|
template:
|
|
src: files/Xdefaults
|
|
dest: /home/{{ item.username }}/.Xdefaults
|
|
with_items: "{{ me }}"
|
|
when: not minimal
|
|
|
|
- name: Install urxvt perls
|
|
pacman:
|
|
name: urxvt-perls
|
|
state: present
|
|
|
|
- name: Install urxvt plugins (AUR)
|
|
aur:
|
|
name: "{{ item }}"
|
|
use: makepkg
|
|
skip_installed: true
|
|
with_items:
|
|
- urxvt-fullscreen
|
|
- urxvt-resize-font-git
|
|
become: yes
|
|
become_user: aur_builder
|
|
|
|
- name: Clone TPM (tmux plugin manager)
|
|
git:
|
|
repo: https://github.com/tmux-plugins/tpm
|
|
dest: /home/{{ item.username }}/.tmux/plugins/tpm
|
|
version: master
|
|
accept_hostkey: yes
|
|
with_items: "{{ me }}"
|
|
|
|
- name: Copy tmux.conf
|
|
template:
|
|
src: files/tmux.conf
|
|
dest: /home/{{ item.username }}/.tmux.conf
|
|
owner: "{{ item.username }}"
|
|
with_items: "{{ me }}"
|
|
|
|
- name: Install tmuxinator
|
|
gem:
|
|
name: tmuxinator
|
|
state: latest
|
|
|
|
- name: Copy .vim/
|
|
template:
|
|
src: files/vim/
|
|
dest: /home/{{ item.username }}/.vim/
|
|
owner: "{{ item.username }}"
|
|
with_items: "{{ me }}"
|
|
|
|
- name: Download plug.vim
|
|
get_url:
|
|
url: https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
|
dest: /home/{{ item.username }}/.vim/autoload/plug.vim
|
|
owner: "{{ item.username }}"
|
|
with_items: "{{ me }}"
|
|
|
|
- name: Copy vimrc
|
|
template:
|
|
src: files/vimrc
|
|
dest: /home/{{ item.username }}/.vimrc
|
|
owner: "{{ item.username }}"
|
|
with_items: "{{ me }}"
|