From fb8fa78143eb9c5d3b0b67bf09265cfbeaf8fd4a Mon Sep 17 00:00:00 2001 From: Mike Cooper Date: Sat, 5 May 2012 11:47:25 -0700 Subject: [PATCH] Oops, forgot to include this file. --- modules/vim/manifests/solarized.pp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 modules/vim/manifests/solarized.pp diff --git a/modules/vim/manifests/solarized.pp b/modules/vim/manifests/solarized.pp new file mode 100644 index 0000000..a32c3fc --- /dev/null +++ b/modules/vim/manifests/solarized.pp @@ -0,0 +1,12 @@ +# Solarized vim color scheme. + +# $title is the name of the user this config should exist for +define vim::solarized ($home="/home/${title}") { + + @vcsrepo { "${home}/.vim/bundle/solarized": + ensure => present, + provider => git, + source => "git://github.com/altercation/vim-colors-solarized.git", + tag => "${title}_pathogen"; + } +}