mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-29 14:28:27 +02:00
15 lines
269 B
Nix
15 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
|
||
|
];
|
||
|
}
|