nix-community.nixvim/docs/lib/pages.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
416 B
Nix
Raw Normal View History

# This file contains a list of function reference docs pages that should be generated by `nixdoc`
#
# Note: `nixdoc` uses `rnix` to parse the input file, so the file must return a fairly simple attrset.
# If there is an issue parsing the file, the resulting markdown will not contain any function docs.
{
lib.pages = {
nixvim = {
title = "Nixvim's functions";
markdown = ./index.md;
};
};
}