mirror of
https://github.com/cap153/nvim.git
synced 2026-04-17 01:35:54 +08:00
57 lines
1.4 KiB
JSON
57 lines
1.4 KiB
JSON
{
|
|
"sec": {
|
|
"prefix": "sec",
|
|
"body": [
|
|
"-- ===",
|
|
"-- === ${0}",
|
|
"-- ==="
|
|
],
|
|
"description": "Section comment"
|
|
},
|
|
"github": {
|
|
"prefix": "github",
|
|
"body": [
|
|
"\"https:\/\/github.com\/${0}\","
|
|
],
|
|
"description": "Github url"
|
|
},
|
|
"nvpack": {
|
|
"prefix": "nvpack",
|
|
"body": [
|
|
"-- === ${1:插件描述} ===",
|
|
"if vim.g.vscode then return end",
|
|
"",
|
|
"local P = {",
|
|
"\tname = \"${2:<++>}\",",
|
|
"\tdeps = { ${3} },",
|
|
"\tbuild_cmd = ${4:nil},",
|
|
"}",
|
|
"",
|
|
"${5}-- 注册构建监听器",
|
|
"PackUtils.setup_listener(P.name, P.build_cmd)",
|
|
"",
|
|
"-- 懒加载触发器",
|
|
"vim.api.nvim_create_autocmd({",
|
|
"\t${6}-- \"InsertEnter\", \"CmdlineEnter\", -- 补全/命令行",
|
|
"\t-- \"BufReadPost\", \"BufNewFile\", -- 界面/语法类",
|
|
"\t-- \"LspAttach\", -- LSP 相关",
|
|
"\t-- \"FileType\", -- 确定文件类型",
|
|
"\t-- \"VimEnter\", -- 核心初始化完成",
|
|
"\t-- \"UIEnter\", -- vim.schedule(function()",
|
|
"}, {",
|
|
"\tcallback = function()",
|
|
"\t\tPackUtils.load(P, function()",
|
|
"\t\t\t$7",
|
|
"\t\tend)",
|
|
"\tend",
|
|
"})",
|
|
"-- vim.keymap.set({ \"n\", \"x\" }, \"${8:<++>}\", function()",
|
|
"-- \tPackUtils.load(P, function()",
|
|
"-- \t\t$9",
|
|
"-- \tend)",
|
|
"-- \tvim.cmd(\"${10:Command}\")",
|
|
"-- end, { desc = \"${0:描述}\" })"
|
|
],
|
|
"description": "Neovim Native Package Loader (Pure Config)"
|
|
}
|
|
}
|