feat(neovim): Custom snippets for markdown

This commit is contained in:
Pratik Tripathy
2025-08-12 15:05:53 +05:30
parent affac4a931
commit 945d2ca4da
2 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
{
"todo": {
"prefix": ["todo"],
"body": ["* [ ] ${1:task} -- due:${2:today} ${3: project:}"]
}
}

View File

@@ -13,6 +13,12 @@
"rust" "rust"
], ],
"path": "./rust.json" "path": "./rust.json"
},
{
"language": [
"markdown"
],
"path": "./markdown.json"
} }
] ]
} }