-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvim.cf
43 lines (31 loc) · 1.22 KB
/
vim.cf
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
bundle agent vim {
packages:
"vim"
policy => "present";
files:
"/root/.vimrc"
comment => "~/.vimrc for root",
create => "true",
perms => m("644"),
edit_template => "$(sys.inputdir)/policies/files/root/.vimrc";
"/root/.vim/."
comment => "Directory ~/.vim for root",
create => "true",
perms => mog("644", "root", "root");
"/root/.vim/ftplugin/."
comment => "Directory ~/.vim/ftplugin for root",
create => "true",
perms => mog("644", "root", "root");
"/root/.vim/ftplugin/cf3.vim"
create => "true",
perms => m("644"),
edit_template => "$(sys.inputdir)/policies/files/root/.vim/ftplugin/cf3.vim";
"/root/.vim/ftdetect/."
comment => "Directory ~/.vim/ftdetect for root",
create => "true",
perms => mog("644", "root", "root");
"/root/.vim/ftdetect/cf3.vim"
create => "true",
perms => m("644"),
edit_template => "$(sys.inputdir)/policies/files/root/.vim/ftdetect/cf3.vim";
}