Files
dotfiles/nvim/.config/nvim/lua/custom_snippets/markdown.json
2025-01-03 16:44:22 -05:00

19 lines
526 B
JSON

{
"today-date": {
"prefix": "today",
"body": ["${CURRENT_MONTH}-${CURRENT_DATE}-${CURRENT_YEAR}"],
"description": "Puts the date in (Y-m-D) format"
},
"today-tasks": {
"prefix": "todaytask",
"body": ["## ${CURRENT_MONTH}-${CURRENT_DATE}-${CURRENT_YEAR} \n\n- [ ] "],
"description": "Today's date plus a markdown task for easy addition."
},
"box": {
"prefix": "hugobox",
"body": ["{{< box info >}} \n\n {{< /box >}}"],
"description": "Cstom info box for hugo website. Info can also be warn, tip."
}
}