mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +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.
|
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:
|
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.{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.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.
|
- `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;
|
maintainers = import ./maintainers.nix;
|
||||||
keymaps = import ./keymap-helpers.nix {inherit lib;};
|
keymaps = import ./keymap-helpers.nix {inherit lib;};
|
||||||
autocmd = import ./autocmd-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
|
# vim dictionaries are, in theory, compatible with JSON
|
||||||
toVimDict = args:
|
toVimDict = args:
|
||||||
|
@ -301,105 +302,6 @@ with lib; rec {
|
||||||
description = "Plugin to use for ${name}";
|
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 = {
|
extraOptionsOptions = {
|
||||||
extraOptions = mkOption {
|
extraOptions = mkOption {
|
||||||
default = {};
|
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:
|
} @ args:
|
||||||
with lib;
|
with lib;
|
||||||
(
|
(
|
||||||
with import ../helpers.nix {inherit lib;};
|
with (import ../helpers.nix {inherit lib;}).vim-plugin;
|
||||||
mkPlugin args {
|
mkPlugin args {
|
||||||
name = "copilot-vim";
|
name = "copilot-vim";
|
||||||
description = "copilot.vim";
|
description = "copilot.vim";
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
}: let
|
}: let
|
||||||
helpers = import ../../helpers.nix {inherit lib;};
|
helpers = import ../../helpers.nix {inherit lib;};
|
||||||
in
|
in
|
||||||
with helpers;
|
with helpers.vim-plugin;
|
||||||
with lib; {
|
with lib; {
|
||||||
mkCmpSourcePlugin = {
|
mkCmpSourcePlugin = {
|
||||||
name,
|
name,
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
} @ attrs: let
|
} @ attrs: let
|
||||||
helpers = import ../helpers.nix {inherit lib;};
|
helpers = import ../helpers.nix {inherit lib;};
|
||||||
in
|
in
|
||||||
with helpers;
|
with helpers.vim-plugin;
|
||||||
with lib;
|
with lib;
|
||||||
mkPlugin attrs {
|
mkPlugin attrs {
|
||||||
name = "fugitive";
|
name = "fugitive";
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
...
|
...
|
||||||
} @ args:
|
} @ args:
|
||||||
with lib;
|
with lib;
|
||||||
with import ../helpers.nix {inherit lib;};
|
with (import ../helpers.nix {inherit lib;}).vim-plugin;
|
||||||
mkPlugin args {
|
mkPlugin args {
|
||||||
name = "ledger";
|
name = "ledger";
|
||||||
description = "ledger language features";
|
description = "ledger language features";
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
...
|
...
|
||||||
} @ args:
|
} @ args:
|
||||||
with lib;
|
with lib;
|
||||||
with import ../helpers.nix {inherit lib;};
|
with (import ../helpers.nix {inherit lib;}).vim-plugin;
|
||||||
mkPlugin args {
|
mkPlugin args {
|
||||||
name = "markdown-preview";
|
name = "markdown-preview";
|
||||||
description = "markdown-preview.nvim";
|
description = "markdown-preview.nvim";
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
} @ attrs: let
|
} @ attrs: let
|
||||||
helpers = import ../helpers.nix {inherit lib;};
|
helpers = import ../helpers.nix {inherit lib;};
|
||||||
in
|
in
|
||||||
with helpers;
|
with helpers.vim-plugin;
|
||||||
with lib;
|
with lib;
|
||||||
mkPlugin attrs {
|
mkPlugin attrs {
|
||||||
name = "nix";
|
name = "nix";
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
...
|
...
|
||||||
} @ args:
|
} @ args:
|
||||||
with lib;
|
with lib;
|
||||||
with import ../helpers.nix {inherit lib;};
|
with (import ../helpers.nix {inherit lib;}).vim-plugin;
|
||||||
mkPlugin args {
|
mkPlugin args {
|
||||||
name = "tagbar";
|
name = "tagbar";
|
||||||
package = pkgs.vimPlugins.tagbar;
|
package = pkgs.vimPlugins.tagbar;
|
||||||
|
|
|
@ -2,9 +2,11 @@
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
} @ args:
|
} @ args: let
|
||||||
with lib;
|
helpers = import ../helpers.nix {inherit lib;};
|
||||||
with import ../helpers.nix {inherit lib;};
|
in
|
||||||
|
with lib;
|
||||||
|
with helpers.vim-plugin;
|
||||||
mkPlugin args {
|
mkPlugin args {
|
||||||
name = "vim-slime";
|
name = "vim-slime";
|
||||||
package = pkgs.vimPlugins.vim-slime;
|
package = pkgs.vimPlugins.vim-slime;
|
||||||
|
@ -72,7 +74,7 @@ with import ../helpers.nix {inherit lib;};
|
||||||
|
|
||||||
defaultConfig = mkDefaultOpt {
|
defaultConfig = mkDefaultOpt {
|
||||||
global = "default_config";
|
global = "default_config";
|
||||||
type = with nixvimTypes; attrsOf (either str rawLua);
|
type = with helpers.nixvimTypes; attrsOf (either str rawLua);
|
||||||
description = ''
|
description = ''
|
||||||
Pre-filled prompt answer.
|
Pre-filled prompt answer.
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
} @ attrs: let
|
} @ attrs: let
|
||||||
helpers = import ../helpers.nix {inherit lib;};
|
helpers = import ../helpers.nix {inherit lib;};
|
||||||
in
|
in
|
||||||
with helpers;
|
with helpers.vim-plugin;
|
||||||
with lib;
|
with lib;
|
||||||
mkPlugin attrs {
|
mkPlugin attrs {
|
||||||
name = "zig";
|
name = "zig";
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
...
|
...
|
||||||
} @ args:
|
} @ args:
|
||||||
with lib;
|
with lib;
|
||||||
with import ../helpers.nix {inherit lib;};
|
with (import ../helpers.nix {inherit lib;}).vim-plugin;
|
||||||
mkPlugin args {
|
mkPlugin args {
|
||||||
name = "airline";
|
name = "airline";
|
||||||
description = "vim-airline";
|
description = "vim-airline";
|
||||||
|
|
|
@ -11,7 +11,7 @@ with lib; let
|
||||||
in
|
in
|
||||||
either strInt (attrsOf (either strInt (attrsOf strInt)));
|
either strInt (attrsOf (either strInt (attrsOf strInt)));
|
||||||
in
|
in
|
||||||
with helpers;
|
with helpers.vim-plugin;
|
||||||
mkPlugin attrs {
|
mkPlugin attrs {
|
||||||
name = "emmet";
|
name = "emmet";
|
||||||
description = "Enable emmet";
|
description = "Enable emmet";
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
} @ attrs: let
|
} @ attrs: let
|
||||||
helpers = import ../helpers.nix {inherit lib;};
|
helpers = import ../helpers.nix {inherit lib;};
|
||||||
in
|
in
|
||||||
with helpers;
|
with helpers.vim-plugin;
|
||||||
with lib;
|
with lib;
|
||||||
mkPlugin attrs {
|
mkPlugin attrs {
|
||||||
name = "endwise";
|
name = "endwise";
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
} @ attrs: let
|
} @ attrs: let
|
||||||
helpers = import ../helpers.nix {inherit lib;};
|
helpers = import ../helpers.nix {inherit lib;};
|
||||||
in
|
in
|
||||||
with helpers;
|
with helpers.vim-plugin;
|
||||||
with lib;
|
with lib;
|
||||||
mkPlugin attrs {
|
mkPlugin attrs {
|
||||||
name = "goyo";
|
name = "goyo";
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
...
|
...
|
||||||
} @ args:
|
} @ args:
|
||||||
with lib;
|
with lib;
|
||||||
with import ../helpers.nix {inherit lib;};
|
with (import ../helpers.nix {inherit lib;}).vim-plugin;
|
||||||
mkPlugin args {
|
mkPlugin args {
|
||||||
name = "instant";
|
name = "instant";
|
||||||
description = "instant.nvim";
|
description = "instant.nvim";
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
...
|
...
|
||||||
} @ args:
|
} @ args:
|
||||||
with lib;
|
with lib;
|
||||||
with import ../helpers.nix {inherit lib;};
|
with (import ../helpers.nix {inherit lib;}).vim-plugin;
|
||||||
mkPlugin args {
|
mkPlugin args {
|
||||||
name = "magma-nvim";
|
name = "magma-nvim";
|
||||||
description = "magma-nvim";
|
description = "magma-nvim";
|
||||||
|
|
|
@ -2,9 +2,11 @@
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
} @ args:
|
} @ args: let
|
||||||
with lib;
|
helpers = import ../helpers.nix {inherit lib;};
|
||||||
with import ../helpers.nix {inherit lib;};
|
in
|
||||||
|
with lib;
|
||||||
|
with helpers.vim-plugin;
|
||||||
mkPlugin args {
|
mkPlugin args {
|
||||||
name = "molten";
|
name = "molten";
|
||||||
description = "molten-nvim";
|
description = "molten-nvim";
|
||||||
|
@ -95,7 +97,7 @@ with import ../helpers.nix {inherit lib;};
|
||||||
|
|
||||||
Default: `["" "━" "" ""]`
|
Default: `["" "━" "" ""]`
|
||||||
'';
|
'';
|
||||||
type = nixvimTypes.border;
|
type = helpers.nixvimTypes.border;
|
||||||
};
|
};
|
||||||
|
|
||||||
outputWinCoverGutter = mkDefaultOpt {
|
outputWinCoverGutter = mkDefaultOpt {
|
||||||
|
@ -157,7 +159,7 @@ with import ../helpers.nix {inherit lib;};
|
||||||
|
|
||||||
Default: `{__raw = "vim.fn.stdpath('data')..'/molten'";}`
|
Default: `{__raw = "vim.fn.stdpath('data')..'/molten'";}`
|
||||||
'';
|
'';
|
||||||
type = with nixvimTypes; either str rawLua;
|
type = with helpers.nixvimTypes; either str rawLua;
|
||||||
};
|
};
|
||||||
|
|
||||||
useBorderHighlights = mkDefaultOpt {
|
useBorderHighlights = mkDefaultOpt {
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
helpers = import ../helpers.nix {inherit lib;};
|
helpers = import ../helpers.nix {inherit lib;};
|
||||||
in
|
in
|
||||||
with lib;
|
with lib;
|
||||||
with helpers;
|
with helpers.vim-plugin;
|
||||||
mkPlugin args {
|
mkPlugin args {
|
||||||
name = "startify";
|
name = "startify";
|
||||||
description = "Enable startify";
|
description = "Enable startify";
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
} @ attrs: let
|
} @ attrs: let
|
||||||
helpers = import ../helpers.nix {inherit lib;};
|
helpers = import ../helpers.nix {inherit lib;};
|
||||||
in
|
in
|
||||||
with helpers;
|
with helpers.vim-plugin;
|
||||||
with lib;
|
with lib;
|
||||||
mkPlugin attrs {
|
mkPlugin attrs {
|
||||||
name = "surround";
|
name = "surround";
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
...
|
...
|
||||||
} @ args:
|
} @ args:
|
||||||
with lib;
|
with lib;
|
||||||
with import ../helpers.nix {inherit lib;};
|
with (import ../helpers.nix {inherit lib;}).vim-plugin;
|
||||||
mkPlugin args {
|
mkPlugin args {
|
||||||
name = "undotree";
|
name = "undotree";
|
||||||
package = pkgs.vimPlugins.undotree;
|
package = pkgs.vimPlugins.undotree;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue