Install vim

This commit is contained in:
Jake Howard 2017-08-12 21:02:11 +01:00
parent 7eac748248
commit 53431f688e
Signed by: jake
GPG Key ID: 57AFB45680EDD477
3 changed files with 3 additions and 4 deletions

View File

@ -20,6 +20,4 @@ class config {
mode => "0644",
source => 'puppet:///modules/config/uniemoji.json'
}
}

View File

@ -17,6 +17,7 @@ class config::vim {
exec { 'install vim plugins':
command => "vim +PluginInstall +qall",
user => "jake",
environment => "HOME=/home/jake"
environment => "HOME=/home/jake",
require => Package['vim']
}
}

View File

@ -1,6 +1,6 @@
class yaourt::packages () {
package {[
'firefox'
'vim'
]:
ensure => latest
}