-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.kitchen.yml
63 lines (60 loc) · 1.44 KB
/
.kitchen.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
kitchen:
log_level: debug
driver:
name: vagrant
platforms:
- name: centos-6.5
- name: debian-6.0.8
- name: debian-7.2.0
- name: ubuntu-10.04
- name: ubuntu-12.04
- name: ubuntu-12.10
- name: ubuntu-13.04
- name: ubuntu-13.10
suites:
- name: default
run_list: &default_run_list
- recipe[vim]
- recipe[vim_config]
attributes: {}
- name: git_pathogen
run_list: *default_run_list
attributes:
vim_config:
plugin_manager: "pathogen"
bundles: &default_git_bundle
git:
- git://github.com/scrooloose/nerdcommenter.git
- name: mercurial_pathogen
run_list: *default_run_list
attributes:
vim_config:
plugin_manager: "pathogen"
bundles: &default_hg_bundle
hg:
- https://bitbucket.org/delroth/vim-ack
- name: git_vundle
run_list: *default_run_list
attributes:
vim_config:
plugin_manager: "vundle"
bundles: *default_git_bundle
- name: mercurial_vundle
run_list: *default_run_list
attributes:
vim_config:
plugin_manager: "vundle"
bundles: *default_hg_bundle
- name: git_unbundle
run_list: *default_run_list
attributes:
vim_config:
plugin_manager: "unbundle"
bundles: *default_git_bundle
- name: mercurial_unbundle
run_list: *default_run_list
attributes:
vim_config:
plugin_manager: "unbundle"
bundles: *default_hg_bundle