nix-community.nixvim/plugins/by-name/devdocs/default.nix

19 lines
369 B
Nix
Raw Normal View History

2025-03-20 11:07:25 +01:00
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "devdocs";
packPathName = "devdocs.nvim";
package = "devdocs-nvim";
2025-06-18 02:42:47 +03:00
description = "A Neovim plugin for accessing DevDocs documentation.";
2025-03-20 11:07:25 +01:00
maintainers = [ lib.maintainers.GaetanLepage ];
settingsExample = {
ensure_installed = [
"go"
"html"
"http"
"lua~5.1"
];
};
}