From 91f51aede7c9c769c19f74ba9042b8fdb4ed2989 Mon Sep 17 00:00:00 2001 From: C4 Patino Date: Tue, 19 Aug 2025 22:06:09 -0500 Subject: [PATCH] plugins/contextfiles: init --- plugins/by-name/contextfiles/default.nix | 14 ++++++++++++++ .../plugins/by-name/contextfiles/default.nix | 5 +++++ 2 files changed, 19 insertions(+) create mode 100644 plugins/by-name/contextfiles/default.nix create mode 100644 tests/test-sources/plugins/by-name/contextfiles/default.nix diff --git a/plugins/by-name/contextfiles/default.nix b/plugins/by-name/contextfiles/default.nix new file mode 100644 index 00000000..70cf2081 --- /dev/null +++ b/plugins/by-name/contextfiles/default.nix @@ -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 + ]; +} diff --git a/tests/test-sources/plugins/by-name/contextfiles/default.nix b/tests/test-sources/plugins/by-name/contextfiles/default.nix new file mode 100644 index 00000000..22e3c2d7 --- /dev/null +++ b/tests/test-sources/plugins/by-name/contextfiles/default.nix @@ -0,0 +1,5 @@ +{ + empty = { + plugins.contextfiles.enable = true; + }; +}