my_nvim_config/after/plugin/neogen.lua

11 lines
556 B
Lua
Raw Permalink Normal View History

require('neogen').setup {
enabled = true, --if you want to disable Neogen
input_after_comment = true, -- (default: true) automatic jump (with insert mode) on inserted annotation
snippet_engine = "luasnip",
languages = {
['cpp.doxygen'] = require('neogen.configurations.cpp'),
['python.numpydoc'] = require('neogen.configurations.python'),
}
-- jump_map = "<C-e>" -- (DROPPED SUPPORT, see [here](#cycle-between-annotations) !) The keymap in order to jump in the annotation fields (in insert mode)
}