Dotfiles/site-modules/core/manifests/emacs.pp
Ade Attwood 12e2d3e841 fix(eamcs): change repo url and remove spacemacs dotfile
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
2020-09-21 20:09:37 +01:00

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',
}
}