2020-09-20 11:19:23 +00:00
|
|
|
class core::emacs {
|
|
|
|
|
vcsrepo { "${user_home}/.emacs.d":
|
2020-09-21 19:09:37 +00:00
|
|
|
source => 'https://github.com/syl20bnr/spacemacs',
|
2020-09-20 11:19:23 +00:00
|
|
|
provider => 'git',
|
|
|
|
|
user => $user,
|
|
|
|
|
revision => 'develop',
|
|
|
|
|
}
|
2020-10-17 15:47:40 +00:00
|
|
|
|
|
|
|
|
file { "${user_home}/.spacemacs":
|
|
|
|
|
ensure => 'link',
|
|
|
|
|
target => find_file('core/emacs/spacemacs'),
|
|
|
|
|
}
|
2020-09-20 11:19:23 +00:00
|
|
|
}
|