From 67bbdf9318aa27961ebb18b4581aad7cc4c87598 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sat, 11 Jan 2025 02:02:25 +0100 Subject: [PATCH] plugins/cornelis: init --- plugins/by-name/cornelis/default.nix | 54 +++++++++++++++++++ .../plugins/by-name/cornelis/default.nix | 31 +++++++++++ 2 files changed, 85 insertions(+) create mode 100644 plugins/by-name/cornelis/default.nix create mode 100644 tests/test-sources/plugins/by-name/cornelis/default.nix diff --git a/plugins/by-name/cornelis/default.nix b/plugins/by-name/cornelis/default.nix new file mode 100644 index 0000000000..18ecc298cb --- /dev/null +++ b/plugins/by-name/cornelis/default.nix @@ -0,0 +1,54 @@ +{ lib, pkgs, ... }: +let + inherit (lib.nixvim) defaultNullOpts; +in +lib.nixvim.plugins.mkVimPlugin { + name = "cornelis"; + globalPrefix = "cornelis_"; + + maintainers = [ lib.maintainers.GaetanLepage ]; + + extraOptions = { + cornelisPackage = lib.mkPackageOption pkgs "cornelis" { + nullable = true; + }; + }; + + extraConfig = cfg: { + extraPackages = [ cfg.cornelisPackage ]; + }; + + settingsOptions = { + use_global_binary = defaultNullOpts.mkFlagInt 0 '' + Whether to use global binary instead of stack. + ''; + + agda_prefix = defaultNullOpts.mkStr' { + pluginDefault = ""; + example = ""; + description = '' + Prefix used for agda keybindings. + ''; + }; + + no_agda_input = defaultNullOpts.mkFlagInt 0 '' + Disable the default keybindings. + ''; + + bind_input_hook = defaultNullOpts.mkStr' { + pluginDefault = null; + example = "MyCustomHook"; + description = '' + If you'd prefer to manage agda-input entirely on your own (perhaps in a snippet system), you + can customize the bind input hook. + ''; + }; + }; + + settingsExample = { + use_global_binary = 1; + agda_prefix = ""; + no_agda_input = 1; + bind_input_hook = "MyCustomHook"; + }; +} diff --git a/tests/test-sources/plugins/by-name/cornelis/default.nix b/tests/test-sources/plugins/by-name/cornelis/default.nix new file mode 100644 index 0000000000..a4150a8386 --- /dev/null +++ b/tests/test-sources/plugins/by-name/cornelis/default.nix @@ -0,0 +1,31 @@ +{ + empty = { + plugins.cornelis.enable = true; + }; + + defaults = { + plugins.cornelis = { + enable = true; + + settings = { + use_global_binary = 0; + agda_prefix = ""; + no_agda_input = 0; + bind_input_hook = null; + }; + }; + }; + + example = { + plugins.cornelis = { + enable = true; + + settings = { + use_global_binary = 1; + agda_prefix = ""; + no_agda_input = 1; + bind_input_hook = "MyCustomHook"; + }; + }; + }; +}