{ lib, helpers, config, ... }: with lib; helpers.neovim-plugin.mkNeovimPlugin { name = "headlines"; originalName = "headlines.nvim"; package = "headlines-nvim"; maintainers = [ maintainers.GaetanLepage ]; settingsExample = { org.headline_highlights = false; norg = { headline_highlights = [ "Headline" ]; codeblock_highlight = false; }; markdown.headline_highlights = [ "Headline1" ]; }; extraConfig = cfg: { warnings = optional (!config.plugins.treesitter.enable) '' Nixvim (plugins.headlines): headlines requires `plugins.treesitter` to be enabled with the relevant grammars installed. ''; }; }