mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 03:21:14 +00:00
67abc51902
Some checks failed
Set up binary cache / cachix (default) (push) Has been cancelled
Set up binary cache / cachix (maximal) (push) Has been cancelled
Set up binary cache / cachix (nix) (push) Has been cancelled
Validate flake & check documentation / Validate Flake Documentation (docs) (push) Has been cancelled
Validate flake & check documentation / Validate Flake Documentation (docs-html) (push) Has been cancelled
Validate flake & check documentation / Validate Flake Documentation (docs-json) (push) Has been cancelled
Validate flake & check documentation / Validate Flake Documentation (docs-manpages) (push) Has been cancelled
Validate flake & check formatting / Validate Flake (push) Has been cancelled
Validate flake & check formatting / Formatting via Alejandra (push) Has been cancelled
Build and deploy documentation / publish (push) Has been cancelled
* treewide: remove the theme section from the DAG order dependance * docs/dag-entries: correct theme entry note
21 lines
1.1 KiB
Markdown
21 lines
1.1 KiB
Markdown
# DAG entries in nvf {#ch-dag-entries}
|
|
|
|
From the previous chapter, it should be clear that DAGs are useful, because you
|
|
can add code that relies on other code. However, if you don't know what the
|
|
entries are called, it's hard to do that, so here is a list of the internal
|
|
entries in nvf:
|
|
|
|
`vim.luaConfigRC` (top-level DAG):
|
|
|
|
1. (`luaConfigPre`) - not a part of the actual DAG, instead, it's simply
|
|
inserted before the rest of the DAG
|
|
2. `globalsScript` - used to set globals defined in `vim.globals`
|
|
3. `basic` - used to set basic configuration options
|
|
4. `theme` (this is simply placed before `pluginConfigs`, meaning that surrounding entries don't depend on it) - used to set up the theme, which has to be done before other plugins
|
|
5. `pluginConfigs` - the result of the nested `vim.pluginRC` (internal option,
|
|
see the [Custom Plugins](/index.xhtml#ch-custom-plugins) page for adding your own
|
|
plugins) DAG, used to set up internal plugins
|
|
6. `extraPluginConfigs` - the result of `vim.extraPlugins`, which is not a
|
|
direct DAG, but is converted to, and resolved as one internally
|
|
7. `mappings` - the result of `vim.maps`
|