From: Samir Benmendil Date: Tue, 25 Feb 2025 22:37:57 +0000 (+0000) Subject: nvim: add neogen for doxygen annotations generation X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/11256ca20fc0f6d3ce39d4ff81cb46eaf6e97efe?ds=sidebyside nvim: add neogen for doxygen annotations generation --- diff --git a/nvim/lua/plugins/coding.lua b/nvim/lua/plugins/coding.lua index 55244d5..3f9a85a 100644 --- a/nvim/lua/plugins/coding.lua +++ b/nvim/lua/plugins/coding.lua @@ -167,6 +167,15 @@ return { return opts end, }, + { "danymat/neogen", -- Generate annotations like doxygen + cmd = "Neogen", + keys = { + { "cn", function() require("neogen").generate() end, desc = "Generate Annotations (Neogen)", }, + }, + opts = { + snippet_engine = "luasnip", + }, + }, { "folke/lazydev.nvim", ft = "lua", cmd = "LazyDev",