mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
17 lines
297 B
Nix
17 lines
297 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "devdocs";
|
|
packPathName = "devdocs.nvim";
|
|
package = "devdocs-nvim";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
settingsExample = {
|
|
ensure_installed = [
|
|
"go"
|
|
"html"
|
|
"http"
|
|
"lua~5.1"
|
|
];
|
|
};
|
|
}
|