Tweak colors, initial puppet deploy config

Add some more of the wombat color scheme colors.
Initial manifests to deploy files from repo.

Tested-on: zaphod <15 Apr 2014>
This commit is contained in:
Tom Swartz
2014-04-15 15:56:26 -04:00
parent 1b4d7498bc
commit 9c7e44be77
3 changed files with 37 additions and 2 deletions

View File

@@ -1,5 +1,4 @@
Xcursor.size: 16
URxvt*termName: rxvt-256color
! URxvt*geometry: geometry
! URxvt*chdir: string
URxvt*reverseVideo: false
@@ -36,7 +35,7 @@ URxvt*cursorBlink: true
! URxvt*pointerBlank: boolean
URxvt*background: #242424
URxvt*foreground: #e3e0d7
URxvt*color0: #1E2F41
URxvt*color0: #080808
URxvt*color1: #e5786d
URxvt*color2: #95e454
URxvt*color3: #cae982

10
puppet/mutt.pp Normal file
View File

@@ -0,0 +1,10 @@
class mutt
{
package { 'mutt' :
ensure => latest,
}
file { '/home/tom/.muttrc' :
ensure => present,
source => 'puppet:///modules/mutt/.muttrc',
}
}

26
puppet/vim.pp Normal file
View File

@@ -0,0 +1,26 @@
class vim
{
package { 'vim' :
ensure => latest,
}
file { '/home/tom/.vimrc' :
ensure => present,
source => 'puppet:///modules/vim/.vimrc'
}
file { '/home/tom/.vim' :
ensure => directory,
}
file { '/home/tom/.vim/colors' :
ensure => directory,
require => File['/home/tom/.vim'],
}
->
file { '/home/tom/.vim/colors/wombat.vim' :
ensure => present,
source => 'puppet:///modules/vim/wombat.vim',
require => File['/home/tom/.vim/colors'],
}
}