res/wiki/static/Cookbook.md
This document details a bunch of snippets and prebuilt configurations for individual modules for a just works experience.
[!TIP] If you're looking for a quickstart setup to get you started with Neorg, check out the kickstart page instead.
nvim-cmpIn your Neorg configuration:
load = {
["core.defaults"] = {},
["core.completion"] = {
config = {
engine = "nvim-cmp",
}
},
["core.integrations.nvim-cmp"] = {},
}
In your nvim-cmp configuration:
sources = cmp.config.sources({
-- ... your other sources here
{ name = "neorg" },
})
image.nvim installed and set upIn your Neorg configuration:
load = {
["core.integrations.image"] = {},
["core.latex.renderer"] = {},
}
Place some maths within maths blocks ($| ... |$):
$|Hello, \LaTeX|$
Run :Neorg render-latex.