11 lines
556 B
Lua
11 lines
556 B
Lua
|
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)
|
||
|
}
|