Change the git source for spacemacs so it links up with the existing git source. Also remove the spacemacs dotfile, this will be in the private repo until I can sort out a private spacemacs module to put some stuff
8 lines
194 B
Puppet
8 lines
194 B
Puppet
class core::emacs {
|
|
vcsrepo { "${user_home}/.emacs.d":
|
|
source => 'https://github.com/syl20bnr/spacemacs',
|
|
provider => 'git',
|
|
user => $user,
|
|
revision => 'develop',
|
|
}
|
|
}
|