This is the first commit that brings the privet dotfiles to a public reop previously this was all one puppet module. Now this has been split out so I can put all of the private files in a private puppet module
42 lines
681 B
Text
42 lines
681 B
Text
snippet link "Link to something"
|
|
[${1:${VISUAL:Text}}](${3:http://${2:www.url.com}})$0
|
|
endsnippet
|
|
|
|
snippet img "Image"
|
|
$0
|
|
endsnippet
|
|
|
|
snippet icode "Inline Code" i
|
|
\`$1\`$0
|
|
endsnippet
|
|
|
|
snippet code "Codeblock" b
|
|
\`\`\`${1:lang}
|
|
$2
|
|
\`\`\`
|
|
$0
|
|
endsnippet
|
|
|
|
snippet table "A base table layout" b
|
|
|${0} | | | | |
|
|
|---|---|---|---|---|
|
|
| | | | | |
|
|
endsnippet
|
|
|
|
snippet frontmatter "A basic frontmatter block" b
|
|
---
|
|
title: ${1:Title}
|
|
comments: false
|
|
date: ${2:date}
|
|
tags:
|
|
- ${3:tags}
|
|
categories:
|
|
- ${4:categories}
|
|
---
|
|
|
|
${0}
|
|
endsnippet
|
|
|
|
snippet more "A more comment tag for blogs" b
|
|
<!-- more -->
|
|
endsnippet
|