Sync configuration for caret
This commit is contained in:
parent
fc5b0fa4c1
commit
6ec68eef81
2 changed files with 26 additions and 0 deletions
14
modules/config/files/caret-preferences.md
Normal file
14
modules/config/files/caret-preferences.md
Normal 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.
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue