Initial commit

This commit is contained in:
ItsDrike 2022-10-29 20:25:42 +02:00
parent b912871070
commit a3e01caebf
No known key found for this signature in database
GPG key ID: B014E761034AF742
157 changed files with 9696 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{
"name": "nvim-snippets",
"author": "ItsDrike",
"engines": {
"vscode": "^1.11.0"
},
"contributes": {
"snippets": [
{
"language": "python",
"path": "./python.json"
}
]
}
}

View file

@ -0,0 +1,21 @@
{
"future.__annotations__": {
"prefix": "futann",
"body": "from __future__ import annotations\n",
"description": "Add __future__.annoations import."
},
"script": {
"prefix": "script",
"body": [
"#!/usr/bin/env python3",
"",
"def main() -> None:",
"\t${1:...}",
"",
"",
"if __name__ == \"__main__\":",
"\tmain()"
],
"description": "print Hello, World!"
}
}