I broke up with neovim....vim is my best friend now
This commit is contained in:
79
dot_vim/plugged/friendly-snippets/snippets/norg.json
Normal file
79
dot_vim/plugged/friendly-snippets/snippets/norg.json
Normal file
@@ -0,0 +1,79 @@
|
||||
{
|
||||
"bold": {
|
||||
"prefix": "bold",
|
||||
"body": ["*$0*"],
|
||||
"description": "bold words"
|
||||
},
|
||||
"code": {
|
||||
"prefix": "code",
|
||||
"body": ["@code ${1:lang}", "$0", "@end"],
|
||||
"description": "code_block"
|
||||
},
|
||||
"data": {
|
||||
"prefix": "data",
|
||||
"body": ["@data", "$0", "@end"],
|
||||
"description": "data tags"
|
||||
},
|
||||
"inlinecode": {
|
||||
"description": "inlinecode",
|
||||
"prefix": "inlinecode",
|
||||
"body": ["`$0`"]
|
||||
},
|
||||
"italic": {
|
||||
"prefix": "italic",
|
||||
"body": ["/$0/"],
|
||||
"description": "italic words"
|
||||
},
|
||||
"link": {
|
||||
"prefix": "link",
|
||||
"body": ["[${1:description}](${2:object})"],
|
||||
"description": "links"
|
||||
},
|
||||
"math": {
|
||||
"prefix": "math",
|
||||
"body": ["@math", "$0", "@end"],
|
||||
"description": "math block"
|
||||
},
|
||||
|
||||
"spoiler": {
|
||||
"description": "spoiler",
|
||||
"prefix": "spoiler",
|
||||
"body": ["!$0!"]
|
||||
},
|
||||
|
||||
"strikethrough": {
|
||||
"description": "strike through",
|
||||
"prefix": "strikethrough",
|
||||
"body": ["-$0-"]
|
||||
},
|
||||
"subscript": {
|
||||
"prefix": "subscript",
|
||||
"body": [",$0,"],
|
||||
"description": "subscript"
|
||||
},
|
||||
"superscript": {
|
||||
"prefix": "superscript",
|
||||
"body": ["^$0^"],
|
||||
"description": "superscript"
|
||||
},
|
||||
"table": {
|
||||
"prefix": "table",
|
||||
"body": ["@table", "$0", "@end"],
|
||||
"description": "table"
|
||||
},
|
||||
"task": {
|
||||
"prefix": "task",
|
||||
"body": ["- ( ) ${1:task}"],
|
||||
"description": "task"
|
||||
},
|
||||
"underline": {
|
||||
"prefix": "underline",
|
||||
"body": ["_$0_"],
|
||||
"description": "underline words"
|
||||
},
|
||||
"var": {
|
||||
"prefix": "var",
|
||||
"body": ["=${1:variable}="],
|
||||
"description": "variable"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user