diff --git a/atom/.atom/config.cson b/atom/.atom/config.cson index a57517f..a32df95 100644 --- a/atom/.atom/config.cson +++ b/atom/.atom/config.cson @@ -18,6 +18,9 @@ "desktop.ini" ".sass-cache" ] + packagesWithKeymapsDisabled: [ + "jekyll" + ] telemetryConsent: "limited" themes: [ "one-dark-ui" @@ -31,9 +34,10 @@ tabLength: 4 "exception-reporting": userId: "c6ecdfe6-c496-4331-937d-5bb16acf637e" - "markdown-preview": {} - minimap: - displayCodeHighlights: false + jekyll: {} + "markdown-preview": + useGitHubStyle: true + minimap: {} "tree-view": hideIgnoredNames: true squashDirectoryNames: true @@ -48,6 +52,9 @@ ".basic.html.text": editor: softWrap: true +".css.liquid.scss.source": + editor: + softWrapHangingIndent: 2 ".css.scss.source": editor: softWrapHangingIndent: 2 diff --git a/atom/.atom/snippets.cson b/atom/.atom/snippets.cson index cd66bba..93df08e 100644 --- a/atom/.atom/snippets.cson +++ b/atom/.atom/snippets.cson @@ -19,3 +19,20 @@ # If you are unfamiliar with CSON, you can read more about it in the # Atom Flight Manual: # http://flight-manual.atom.io/using-atom/sections/basic-customization/#_cson + +'.source.gfm': + 'Image': + 'prefix': 'image' + 'body': """ + {% include figure-image.html + src="$1" + alt="$2" %} + """ +'.source.gfm': + 'Image Gallery': + 'prefix': 'gallery' + 'body': """ + {% include figure-gallery.html + src="$1" + alt="$2" %} + """