将自定义 VSCode 样式片段添加到 NVCad

问题描述 投票:0回答:1

将 Neovim 与 NVChad 一起使用。

我已阅读文档,但除非将自定义片段添加到默认的

friendly-snippets
文件夹,否则无法使其正常工作。

根据 NVChad 文档:

-- vscode format i.e json files
vim.g.vscode_snippets_path = "your snippets path"

-- snipmate format 
vim.g.snipmate_snippets_path = "your snippets path"

-- lua format 
vim.g.lua_snippets_path = vim.fn.stdpath "config" .. "/lua/lua_snippets"

这些是我的项目中的相关文件,但没有什么区别。 我可以看到 Neovim 正在拾取

vscode_snippets_path
但它没有加载自定义片段。 我没有更改任何与配置中的片段有关的其他内容。

enter image description here

我错过了什么?

lua neovim code-snippets
1个回答
0
投票

你有没有弄清楚这一点。我也在努力让片段发挥作用。

© www.soinside.com 2019 - 2024. All rights reserved.