config/.config/nvim/lua/chris/neogen.lua

11 lines
433 B
Lua

local s_ok, neogen = pcall(require, "neogen")
if not s_ok then
return
end
neogen.setup {
enabled = true, --if you want to disable Neogen
input_after_comment = true, -- (default: true) automatic jump (with insert mode) on inserted annotation
-- jump_map = "<C-e>" -- (DROPPED SUPPORT, see [here](#cycle-between-annotations) !) The keymap in order to jump in the annotation fields (in insert mode)
}