Sync configuration for caret

This commit is contained in:
Jake Howard 2018-03-04 21:14:00 +00:00
parent fc5b0fa4c1
commit 6ec68eef81
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,14 @@
# Preferences
Edit and save to update preferences:
```yaml
useProportionalFontInProse: Roboto # set to false to disable
useLargeFontInHeadings: "Roboto" # set to false to disable
font: "Fira Mono"
fontSize: 15
lineHeight: 1.8
lineWidth: 72
```
More options coming soon.

View File

@ -76,6 +76,18 @@ class config {
source => 'puppet:///modules/config/mimeapps.list'
}
file { 'Caret config directory':
ensure => directory,
mode => '0644',
path => '/home/jake/.config/Caret'
}
-> file { 'Caret configuration file':
ensure => file,
mode => '0644',
path => '/home/jake/.config/Caret/Preferences.md',
source => 'puppet:///modules/config/caret-preferences.md'
}
service { 'lightdm':
enable => false
}