-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserialdoom.yml
45 lines (40 loc) · 938 Bytes
/
serialdoom.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
# vi: ft=ansible:
- hosts: all
tasks:
- name: setup links
file:
src: '{{ playbook_dir }}/{{ item }}'
dest: '~/{{ item }}'
state: link
force: true
with_items:
- .bashrc
- .bash
- .vimrc
- .zshrc
- .irbc
- .tmux.conf
tags:
- links
- name: install vundle
git:
repo: https://github.com/VundleVim/Vundle.vim.git
dest: ~/.vim/bundle/Vundle.vim
version: master
- name: deploy tmux template
template:
src: .tmux.conf
dest: ~/.tmux.conf
tags:
- tmux
- name: pip install some stuff
pip:
name: '{{ item }}'
state: present
extra_args: '--user'
with_items:
- sh
tags:
- pip
- debug: msg="vim +PluginInstall +qall"