Defined Type: vim::plugin
- Defined in:
- manifests/plugin.pp
Overview
1 2 3 4 5 6 7 8 |
# File 'manifests/plugin.pp', line 1
define vim::plugin ($source) {
vcsrepo { "${vim::home_dir}/.vim/bundle/${name}":
ensure => present,
provider => git,
user => $vim::user,
source => $source,
}
}
|