init
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
#! /usr/bin/env lua
|
||||
--
|
||||
-- config.lua
|
||||
-- Copyright (C) 2023 veypi <i@veypi.com>
|
||||
--
|
||||
-- Distributed under terms of the MIT license.
|
||||
--
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "nvim-snippets",
|
||||
"author": "veypi",
|
||||
"engines": {
|
||||
"vscode": "^1.11.0"
|
||||
},
|
||||
"contributes": {
|
||||
"snippets": [
|
||||
{
|
||||
"language": "python",
|
||||
"path": "./python.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"hello": {
|
||||
"prefix": "hello",
|
||||
"body": [
|
||||
"print('Hello, World!')"
|
||||
],
|
||||
"description": "print Hello, World!"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user