This commit is contained in:
veypi
2023-09-15 14:40:13 +08:00
parent a53f7ed8f7
commit a19265f793
14 changed files with 216 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#! /usr/bin/env lua
--
-- config.lua
-- Copyright (C) 2023 veypi <i@veypi.com>
--
-- Distributed under terms of the MIT license.
--
+15
View File
@@ -0,0 +1,15 @@
{
"name": "nvim-snippets",
"author": "veypi",
"engines": {
"vscode": "^1.11.0"
},
"contributes": {
"snippets": [
{
"language": "python",
"path": "./python.json"
}
]
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"hello": {
"prefix": "hello",
"body": [
"print('Hello, World!')"
],
"description": "print Hello, World!"
}
}