mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
14 lines
269 B
Nix
14 lines
269 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
moduleName = "contextfiles";
|
|
name = "contextfiles";
|
|
package = "contextfiles-nvim";
|
|
|
|
callSetup = false;
|
|
hasLuaConfig = false;
|
|
hasSettings = false;
|
|
|
|
maintainers = with lib.maintainers; [
|
|
c4patino
|
|
];
|
|
}
|