Switch sublime preferences to regular files

This commit is contained in:
Gabriel Augendre 2023-02-17 09:50:01 +01:00
parent 5e9dfcfefe
commit 3db69ff828
5 changed files with 10 additions and 10 deletions

View file

@ -1,17 +1,17 @@
// Settings in here override those in "Default/Preferences.sublime-settings", // Settings in here override those in "Default/Preferences.sublime-settings",
// and are overridden in turn by syntax-specific settings. // and are overridden in turn by syntax-specific settings.
{ {
"font_face": "MonoLisa", "font_face": "MonoLisa",
{{- if eq .chezmoi.os "darwin" }} {{- if eq .chezmoi.os "darwin" }}
"font_size": 17, "font_size": 17,
{{- else }} {{- else }}
"font_size": 14, "font_size": 14,
{{- end }} {{- end }}
"scroll_past_end": 0.7, "scroll_past_end": 0.7,
"rulers": [88], "rulers": [88],
"ruler_style": "stippled", "ruler_style": "stippled",
"ignored_packages": "ignored_packages":
[ [
"Vintage", "Vintage",
], ],
} }

View file

@ -0,0 +1 @@
{{- template "Preferences.sublime-settings.tmpl" . -}}

View file

@ -1 +0,0 @@
{{ .chezmoi.sourceDir }}/Preferences.sublime-settings

View file

@ -0,0 +1 @@
{{- template "Preferences.sublime-settings" . -}}