mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
18 lines
297 B
Nix
18 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"
|
||
|
];
|
||
|
};
|
||
|
}
|