--- /dev/null
+"*":
+ "":
+ source:
+ gfm:
+ editor:
+ softWrap: true
+ "autocomplete-plus":
+ enableAutoActivation: false
+ core:
+ autoHideMenuBar: true
+ disabledPackages: [
+ "markdown-preview"
+ ]
+ telemetryConsent: "no"
+ editor:
+ showIndentGuide: true
+ softWrap: false
+ "exception-reporting":
+ userId: "343a74e6-1403-4eb8-9ead-7927cd45ba3d"
+ latex:
+ buildOnSave: true
+ opener: "custom"
+ viewerPath: "/usr/bin/evince"
+ "markdown-preview":
+ breakOnSingleNewline: true
+ "markdown-preview-plus":
+ markdownItConfig: {}
+ mathConfig:
+ enableLatexRenderingByDefault: true
+ previewConfig:
+ activatePreviewWithEditor: true
+ renderer: "pandoc"
+ saveConfig:
+ saveToPDFOptions:
+ printSelectionOnly: true
+ syncConfig:
+ syncEditorOnPreviewScroll: true
+ syncPreviewOnChange: true
+ syncPreviewOnEditorScroll: true
+ "spell-check":
+ addKnownWords: true
+ grammars: [
+ "source.asciidoc"
+ "source.gfm"
+ "text.git-commit"
+ "text.plain"
+ "text.plain.null-grammar"
+ "text.tex.latex"
+ ]
+ knownWords: [
+ "Lorimer"
+ "polyethene"
+ "fulfill"
+ ]
+ locales: [
+ "en-AU"
+ ]
+ welcome:
+ showOnStartup: false
+ whitespace:
+ ensureSingleTrailingNewline: false
+".latex.tex.text":
+ editor:
+ softWrap: true
--- /dev/null
+# You can place LaTeX Macros here.
+# They are written as coffeescript objects in CSON.
+# So don't forget to escape your backslashes!
+# Here are some examples to get you going:
+
+# A zero argument macro
+# This is just an alias for \theta.
+
+# th: "{\\theta}" # Example usage: $\th$
+
+# A one argument macro
+# This one gives you "1 over something" as a fraction.
+
+# inv: ["{\\frac{1}{#1}}",1] # Example usage: $\inv{x}$
+
+# A two argument macro
+# This one gives you a fraction with nicely typeset parentheses on either side.
+
+# pfrac: ["{\\left(\\frac{#1}{#2}\\right)}",2] # Example usage: $\pfrac{x}{y}$
+
+# You can use up to 9 arguments like this!