Puppet Class: vim
- Inherited by:
-
vim::config
vim::install
- Defined in:
- manifests/init.pp
Overview
Class: vim
See README.md for details
Authors
Sebastian Rettenberger <rettenberger.sebastian@arcor.de>
Copyright
Copyright 2016 Sebastian Rettenberger
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'manifests/init.pp', line 13
class vim
(
$syntax = true,
$background = dark
)
{
# Check parameters
validate_bool($syntax)
validate_string($background)
# TODO check supported background types
# Install vim
include vim::install
# Configure vimrc.local
include vim::config
}
|