mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
helpers: move mkPlugin and mkDefaultOpt to helpers.vim-plugin
This commit is contained in:
parent
ddce82d0d1
commit
8f90372ee5
22 changed files with 445 additions and 435 deletions
|
@ -71,7 +71,7 @@ You will then need to add Nix options for all (or most) of the upstream plugin o
|
|||
These options should be in `camelCase` (whereas most plugins define their options in `snake_case`), and their names should match exactly (except the case) to the upstream names.
|
||||
There are a number of helpers to help you correctly implement them:
|
||||
|
||||
- `helpers.mkPlugin`: This helper is useful for simple plugins that are configured through (vim) global variables.
|
||||
- `helpers.vim-plugin.mkPlugin`: This helper is useful for simple plugins that are configured through (vim) global variables.
|
||||
- `helpers.defaultNullOpts.{mkBool,mkInt,mkStr,...}`: This family of helpers takes a default value and a description, and sets the Nix default to `null`. These are the main functions you should use to define options.
|
||||
- `helpers.defaultNullOpts.mkNullable`: This takes a type, a default and a description. This is useful for more complex options.
|
||||
- `helpers.nixvimTypes.rawLua`: A type to represent raw lua code. The values are of the form `{ __raw = "<code>";}`. This should not be used if the option can only be raw lua code, `mkLua`/`mkLuaFn` should be used in this case.
|
||||
|
|
100
lib/helpers.nix
100
lib/helpers.nix
|
@ -3,6 +3,7 @@ with lib; rec {
|
|||
maintainers = import ./maintainers.nix;
|
||||
keymaps = import ./keymap-helpers.nix {inherit lib;};
|
||||
autocmd = import ./autocmd-helpers.nix {inherit lib;};
|
||||
vim-plugin = import ./vim-plugin.nix {inherit lib mkPackageOption;};
|
||||
|
||||
# vim dictionaries are, in theory, compatible with JSON
|
||||
toVimDict = args:
|
||||
|
@ -301,105 +302,6 @@ with lib; rec {
|
|||
description = "Plugin to use for ${name}";
|
||||
};
|
||||
|
||||
mkPlugin = {
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
name,
|
||||
description ? null,
|
||||
package ? null,
|
||||
extraPlugins ? [],
|
||||
extraPackages ? [],
|
||||
options ? {},
|
||||
globalPrefix ? "",
|
||||
...
|
||||
}: let
|
||||
cfg = config.plugins.${name};
|
||||
|
||||
# TODO support nested options!
|
||||
pluginOptions =
|
||||
mapAttrs
|
||||
(
|
||||
optName: opt:
|
||||
opt.option
|
||||
)
|
||||
options;
|
||||
globals =
|
||||
mapAttrs'
|
||||
(optName: opt: {
|
||||
name = let
|
||||
optGlobal =
|
||||
if opt.global == null
|
||||
then optName
|
||||
else opt.global;
|
||||
in
|
||||
globalPrefix + optGlobal;
|
||||
value = cfg.${optName};
|
||||
})
|
||||
options;
|
||||
# does this evaluate package?
|
||||
packageOption =
|
||||
if package == null
|
||||
then {}
|
||||
else {
|
||||
package = mkPackageOption name package;
|
||||
};
|
||||
|
||||
extraConfigOption =
|
||||
if (isString globalPrefix) && (globalPrefix != "")
|
||||
then {
|
||||
extraConfig = mkOption {
|
||||
type = with types; attrsOf anything;
|
||||
description = ''
|
||||
The configuration options for ${name} without the '${globalPrefix}' prefix.
|
||||
Example: To set '${globalPrefix}_foo_bar' to 1, write
|
||||
```nix
|
||||
extraConfig = {
|
||||
foo_bar = true;
|
||||
};
|
||||
```
|
||||
'';
|
||||
default = {};
|
||||
};
|
||||
}
|
||||
else {};
|
||||
in {
|
||||
options.plugins.${name} =
|
||||
{
|
||||
enable = mkEnableOption (
|
||||
if description == null
|
||||
then name
|
||||
else description
|
||||
);
|
||||
}
|
||||
// extraConfigOption
|
||||
// packageOption
|
||||
// pluginOptions;
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
inherit extraPackages globals;
|
||||
# does this evaluate package? it would not be desired to evaluate pacakge if we use another package.
|
||||
extraPlugins = extraPlugins ++ optional (package != null) cfg.package;
|
||||
};
|
||||
};
|
||||
|
||||
mkDefaultOpt = {
|
||||
type,
|
||||
global ? null,
|
||||
description ? null,
|
||||
example ? null,
|
||||
default ? null,
|
||||
...
|
||||
}: {
|
||||
option = mkOption {
|
||||
type = types.nullOr type;
|
||||
inherit default description example;
|
||||
};
|
||||
|
||||
inherit global;
|
||||
};
|
||||
|
||||
extraOptionsOptions = {
|
||||
extraOptions = mkOption {
|
||||
default = {};
|
||||
|
|
104
lib/vim-plugin.nix
Normal file
104
lib/vim-plugin.nix
Normal file
|
@ -0,0 +1,104 @@
|
|||
{
|
||||
lib,
|
||||
mkPackageOption,
|
||||
}:
|
||||
with lib; {
|
||||
mkPlugin = {
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
name,
|
||||
description ? null,
|
||||
package ? null,
|
||||
extraPlugins ? [],
|
||||
extraPackages ? [],
|
||||
options ? {},
|
||||
globalPrefix ? "",
|
||||
...
|
||||
}: let
|
||||
cfg = config.plugins.${name};
|
||||
|
||||
# TODO support nested options!
|
||||
pluginOptions =
|
||||
mapAttrs
|
||||
(
|
||||
optName: opt:
|
||||
opt.option
|
||||
)
|
||||
options;
|
||||
globals =
|
||||
mapAttrs'
|
||||
(optName: opt: {
|
||||
name = let
|
||||
optGlobal =
|
||||
if opt.global == null
|
||||
then optName
|
||||
else opt.global;
|
||||
in
|
||||
globalPrefix + optGlobal;
|
||||
value = cfg.${optName};
|
||||
})
|
||||
options;
|
||||
# does this evaluate package?
|
||||
packageOption =
|
||||
if package == null
|
||||
then {}
|
||||
else {
|
||||
package = mkPackageOption name package;
|
||||
};
|
||||
|
||||
extraConfigOption =
|
||||
if (isString globalPrefix) && (globalPrefix != "")
|
||||
then {
|
||||
extraConfig = mkOption {
|
||||
type = with types; attrsOf anything;
|
||||
description = ''
|
||||
The configuration options for ${name} without the '${globalPrefix}' prefix.
|
||||
Example: To set '${globalPrefix}_foo_bar' to 1, write
|
||||
```nix
|
||||
extraConfig = {
|
||||
foo_bar = true;
|
||||
};
|
||||
```
|
||||
'';
|
||||
default = {};
|
||||
};
|
||||
}
|
||||
else {};
|
||||
in {
|
||||
options.plugins.${name} =
|
||||
{
|
||||
enable = mkEnableOption (
|
||||
if description == null
|
||||
then name
|
||||
else description
|
||||
);
|
||||
}
|
||||
// extraConfigOption
|
||||
// packageOption
|
||||
// pluginOptions;
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
inherit extraPackages globals;
|
||||
# does this evaluate package? it would not be desired to evaluate pacakge if we use another package.
|
||||
extraPlugins = extraPlugins ++ optional (package != null) cfg.package;
|
||||
};
|
||||
};
|
||||
|
||||
mkDefaultOpt = {
|
||||
type,
|
||||
global ? null,
|
||||
description ? null,
|
||||
example ? null,
|
||||
default ? null,
|
||||
...
|
||||
}: {
|
||||
option = mkOption {
|
||||
type = types.nullOr type;
|
||||
inherit default description example;
|
||||
};
|
||||
|
||||
inherit global;
|
||||
};
|
||||
}
|
|
@ -5,7 +5,7 @@
|
|||
} @ args:
|
||||
with lib;
|
||||
(
|
||||
with import ../helpers.nix {inherit lib;};
|
||||
with (import ../helpers.nix {inherit lib;}).vim-plugin;
|
||||
mkPlugin args {
|
||||
name = "copilot-vim";
|
||||
description = "copilot.vim";
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
}: let
|
||||
helpers = import ../../helpers.nix {inherit lib;};
|
||||
in
|
||||
with helpers;
|
||||
with helpers.vim-plugin;
|
||||
with lib; {
|
||||
mkCmpSourcePlugin = {
|
||||
name,
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
} @ attrs: let
|
||||
helpers = import ../helpers.nix {inherit lib;};
|
||||
in
|
||||
with helpers;
|
||||
with helpers.vim-plugin;
|
||||
with lib;
|
||||
mkPlugin attrs {
|
||||
name = "fugitive";
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
...
|
||||
} @ args:
|
||||
with lib;
|
||||
with import ../helpers.nix {inherit lib;};
|
||||
with (import ../helpers.nix {inherit lib;}).vim-plugin;
|
||||
mkPlugin args {
|
||||
name = "ledger";
|
||||
description = "ledger language features";
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
...
|
||||
} @ args:
|
||||
with lib;
|
||||
with import ../helpers.nix {inherit lib;};
|
||||
with (import ../helpers.nix {inherit lib;}).vim-plugin;
|
||||
mkPlugin args {
|
||||
name = "markdown-preview";
|
||||
description = "markdown-preview.nvim";
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
} @ attrs: let
|
||||
helpers = import ../helpers.nix {inherit lib;};
|
||||
in
|
||||
with helpers;
|
||||
with helpers.vim-plugin;
|
||||
with lib;
|
||||
mkPlugin attrs {
|
||||
name = "nix";
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
...
|
||||
} @ args:
|
||||
with lib;
|
||||
with import ../helpers.nix {inherit lib;};
|
||||
with (import ../helpers.nix {inherit lib;}).vim-plugin;
|
||||
mkPlugin args {
|
||||
name = "tagbar";
|
||||
package = pkgs.vimPlugins.tagbar;
|
||||
|
|
|
@ -2,9 +2,11 @@
|
|||
lib,
|
||||
pkgs,
|
||||
...
|
||||
} @ args:
|
||||
} @ args: let
|
||||
helpers = import ../helpers.nix {inherit lib;};
|
||||
in
|
||||
with lib;
|
||||
with import ../helpers.nix {inherit lib;};
|
||||
with helpers.vim-plugin;
|
||||
mkPlugin args {
|
||||
name = "vim-slime";
|
||||
package = pkgs.vimPlugins.vim-slime;
|
||||
|
@ -72,7 +74,7 @@ with import ../helpers.nix {inherit lib;};
|
|||
|
||||
defaultConfig = mkDefaultOpt {
|
||||
global = "default_config";
|
||||
type = with nixvimTypes; attrsOf (either str rawLua);
|
||||
type = with helpers.nixvimTypes; attrsOf (either str rawLua);
|
||||
description = ''
|
||||
Pre-filled prompt answer.
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
} @ attrs: let
|
||||
helpers = import ../helpers.nix {inherit lib;};
|
||||
in
|
||||
with helpers;
|
||||
with helpers.vim-plugin;
|
||||
with lib;
|
||||
mkPlugin attrs {
|
||||
name = "zig";
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
...
|
||||
} @ args:
|
||||
with lib;
|
||||
with import ../helpers.nix {inherit lib;};
|
||||
with (import ../helpers.nix {inherit lib;}).vim-plugin;
|
||||
mkPlugin args {
|
||||
name = "airline";
|
||||
description = "vim-airline";
|
||||
|
|
|
@ -11,7 +11,7 @@ with lib; let
|
|||
in
|
||||
either strInt (attrsOf (either strInt (attrsOf strInt)));
|
||||
in
|
||||
with helpers;
|
||||
with helpers.vim-plugin;
|
||||
mkPlugin attrs {
|
||||
name = "emmet";
|
||||
description = "Enable emmet";
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
} @ attrs: let
|
||||
helpers = import ../helpers.nix {inherit lib;};
|
||||
in
|
||||
with helpers;
|
||||
with helpers.vim-plugin;
|
||||
with lib;
|
||||
mkPlugin attrs {
|
||||
name = "endwise";
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
} @ attrs: let
|
||||
helpers = import ../helpers.nix {inherit lib;};
|
||||
in
|
||||
with helpers;
|
||||
with helpers.vim-plugin;
|
||||
with lib;
|
||||
mkPlugin attrs {
|
||||
name = "goyo";
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
...
|
||||
} @ args:
|
||||
with lib;
|
||||
with import ../helpers.nix {inherit lib;};
|
||||
with (import ../helpers.nix {inherit lib;}).vim-plugin;
|
||||
mkPlugin args {
|
||||
name = "instant";
|
||||
description = "instant.nvim";
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
...
|
||||
} @ args:
|
||||
with lib;
|
||||
with import ../helpers.nix {inherit lib;};
|
||||
with (import ../helpers.nix {inherit lib;}).vim-plugin;
|
||||
mkPlugin args {
|
||||
name = "magma-nvim";
|
||||
description = "magma-nvim";
|
||||
|
|
|
@ -2,9 +2,11 @@
|
|||
lib,
|
||||
pkgs,
|
||||
...
|
||||
} @ args:
|
||||
} @ args: let
|
||||
helpers = import ../helpers.nix {inherit lib;};
|
||||
in
|
||||
with lib;
|
||||
with import ../helpers.nix {inherit lib;};
|
||||
with helpers.vim-plugin;
|
||||
mkPlugin args {
|
||||
name = "molten";
|
||||
description = "molten-nvim";
|
||||
|
@ -95,7 +97,7 @@ with import ../helpers.nix {inherit lib;};
|
|||
|
||||
Default: `["" "━" "" ""]`
|
||||
'';
|
||||
type = nixvimTypes.border;
|
||||
type = helpers.nixvimTypes.border;
|
||||
};
|
||||
|
||||
outputWinCoverGutter = mkDefaultOpt {
|
||||
|
@ -157,7 +159,7 @@ with import ../helpers.nix {inherit lib;};
|
|||
|
||||
Default: `{__raw = "vim.fn.stdpath('data')..'/molten'";}`
|
||||
'';
|
||||
type = with nixvimTypes; either str rawLua;
|
||||
type = with helpers.nixvimTypes; either str rawLua;
|
||||
};
|
||||
|
||||
useBorderHighlights = mkDefaultOpt {
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
helpers = import ../helpers.nix {inherit lib;};
|
||||
in
|
||||
with lib;
|
||||
with helpers;
|
||||
with helpers.vim-plugin;
|
||||
mkPlugin args {
|
||||
name = "startify";
|
||||
description = "Enable startify";
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
} @ attrs: let
|
||||
helpers = import ../helpers.nix {inherit lib;};
|
||||
in
|
||||
with helpers;
|
||||
with helpers.vim-plugin;
|
||||
with lib;
|
||||
mkPlugin attrs {
|
||||
name = "surround";
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
...
|
||||
} @ args:
|
||||
with lib;
|
||||
with import ../helpers.nix {inherit lib;};
|
||||
with (import ../helpers.nix {inherit lib;}).vim-plugin;
|
||||
mkPlugin args {
|
||||
name = "undotree";
|
||||
package = pkgs.vimPlugins.undotree;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue