mirror of
https://github.com/zhigang1992/linux-configs.git
synced 2026-04-29 04:25:42 +08:00
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:
@@ -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
10
puppet/mutt.pp
Normal 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
26
puppet/vim.pp
Normal 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'],
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user