1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

plugins/contextfiles: init

This commit is contained in:
C4 Patino 2025-08-19 22:06:09 -05:00 committed by Matt Sturgeon
parent e03ede7138
commit 91f51aede7
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
moduleName = "contextfiles";
name = "contextfiles";
package = "contextfiles-nvim";
callSetup = false;
hasLuaConfig = false;
hasSettings = false;
maintainers = with lib.maintainers; [
c4patino
];
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.contextfiles.enable = true;
};
}