yes there's a bit of java in my nvim config why do you ask?

This commit is contained in:
2024-08-09 02:45:31 -04:00
parent ad76983d96
commit c489d39369
104 changed files with 2058 additions and 2796 deletions

View File

@ -0,0 +1,19 @@
local misc = require('core.misc')
local map = misc.map
return { 'danymat/neogen',
requires = {
'nvim-treesitter/nvim-treesitter',
'L3MON4D3/LuaSnip'
},
function()
local neogen = require('neogen')
neogen.setup {
enabled = true,
input_after_comment = true,
snippet_engine = "luasnip",
}
map('n', '<leader>d', neogen.generate)
end
}