Where can I find the full list of modules available? #71
-
|
Currently I'm getting an So, I'd like to load the modules manually, so I can pick the ones I'll use. However, after searching through the repo and docs, I was not able to find a list of modules. Is there an extensive list somewhere? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
The wiki contains a list of documented modules but for the past month or so I've been focusing on the code and leaving docs until before the 0.1 release. I know that the completion errors are a bit annoying and i will be fixing it tomorrow and forcing users to select a completion engine manually. As of now you probably want to configure core.norg completion as such: ["core.norg.completion"] = {
config = {
engine = nil
}
}Or optionally you can disable the module entirely: ["core.defaults"] = {
config = {
disable = { "core.norg.completion" },
}
}Note that setting the engine to Looking at lua/neorg/modules/core is also a good way of finding neorg modules (duh lol). Each one should have a short description at the top of the file about what it does. Hope that helps! |
Beta Was this translation helpful? Give feedback.
The wiki contains a list of documented modules but for the past month or so I've been focusing on the code and leaving docs until before the 0.1 release. I know that the completion errors are a bit annoying and i will be fixing it tomorrow and forcing users to select a completion engine manually. As of now you probably want to configure core.norg completion as such:
Or optionally you can disable the module entirely:
Note that setting the engine to
nilwill cause warnings to show up, I'll be fixing that tomorrow too :)Looking a…