mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
feat(extras): added extra for neogen. Closes #2881
This commit is contained in:
parent
43e4f635d6
commit
6fd2c88024
1 changed files with 35 additions and 0 deletions
35
lua/lazyvim/plugins/extras/coding/neogen.lua
Normal file
35
lua/lazyvim/plugins/extras/coding/neogen.lua
Normal file
|
@ -0,0 +1,35 @@
|
|||
return {
|
||||
"danymat/neogen",
|
||||
cmd = "Neogen",
|
||||
keys = {
|
||||
{
|
||||
"<leader>cn",
|
||||
function()
|
||||
require("neogen").generate()
|
||||
end,
|
||||
desc = "Generate Annotations (Neogen)",
|
||||
},
|
||||
},
|
||||
opts = function(_, opts)
|
||||
if opts.snippet_engine ~= nil then
|
||||
return
|
||||
end
|
||||
|
||||
local map = {
|
||||
["LuaSnip"] = "luasnip",
|
||||
["nvim-snippy"] = "snippy",
|
||||
["vim-vsnip"] = "vsnip",
|
||||
}
|
||||
|
||||
for plugin, engine in pairs(map) do
|
||||
if LazyVim.has(plugin) then
|
||||
opts.snippet_engine = engine
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
if vim.snippet then
|
||||
opts.snippet_engine = "nvim"
|
||||
end
|
||||
end,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue