mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-25 10:18:36 +02:00
lib/helpers: extraOptionsOptions -> neovim-plugin.extraOptionsOptions
This commit is contained in:
parent
8b91bf010a
commit
e2c3459d1d
89 changed files with 103 additions and 97 deletions
|
@ -56,7 +56,7 @@ in {
|
|||
);
|
||||
|
||||
options.plugins.clangd-extensions =
|
||||
helpers.extraOptionsOptions
|
||||
helpers.neovim-plugin.extraOptionsOptions
|
||||
// {
|
||||
enable = mkEnableOption "clangd_extensions, plugins implementing clangd LSP extensions";
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ with lib; let
|
|||
cfg = config.plugins.debugprint;
|
||||
in {
|
||||
options.plugins.debugprint =
|
||||
helpers.extraOptionsOptions
|
||||
helpers.neovim-plugin.extraOptionsOptions
|
||||
// {
|
||||
enable = mkEnableOption "debugprint.nvim";
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ with lib; let
|
|||
cfg = config.plugins.lean;
|
||||
in {
|
||||
options.plugins.lean =
|
||||
helpers.extraOptionsOptions
|
||||
helpers.neovim-plugin.extraOptionsOptions
|
||||
// {
|
||||
enable = mkEnableOption "lean-nvim";
|
||||
|
||||
|
|
|
@ -133,7 +133,7 @@ with lib; let
|
|||
};
|
||||
in {
|
||||
options.plugins.lint =
|
||||
helpers.extraOptionsOptions
|
||||
helpers.neovim-plugin.extraOptionsOptions
|
||||
// {
|
||||
enable = mkEnableOption "nvim-lint";
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ with lib; let
|
|||
cfg = config.plugins.nvim-jdtls;
|
||||
in {
|
||||
options.plugins.nvim-jdtls =
|
||||
helpers.extraOptionsOptions
|
||||
helpers.neovim-plugin.extraOptionsOptions
|
||||
// {
|
||||
enable = mkEnableOption "nvim-jdtls";
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ with lib; let
|
|||
cfg = config.plugins.rust-tools;
|
||||
in {
|
||||
options.plugins.rust-tools =
|
||||
helpers.extraOptionsOptions
|
||||
helpers.neovim-plugin.extraOptionsOptions
|
||||
// {
|
||||
enable = mkEnableOption "rust tools plugins";
|
||||
package = helpers.mkPackageOption "rust-tools" pkgs.vimPlugins.rust-tools-nvim;
|
||||
|
|
|
@ -11,7 +11,7 @@ in {
|
|||
meta.maintainers = [maintainers.GaetanLepage];
|
||||
|
||||
options.plugins.rustaceanvim =
|
||||
helpers.extraOptionsOptions
|
||||
helpers.neovim-plugin.extraOptionsOptions
|
||||
// {
|
||||
enable = mkEnableOption "rustaceanvim";
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ with lib; let
|
|||
mkList = helpers.defaultNullOpts.mkNullable (types.listOf types.str);
|
||||
in {
|
||||
options.plugins.sniprun =
|
||||
helpers.extraOptionsOptions
|
||||
helpers.neovim-plugin.extraOptionsOptions
|
||||
// {
|
||||
enable = mkEnableOption "sniprun";
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
}:
|
||||
with lib; {
|
||||
options.plugins.rainbow-delimiters =
|
||||
helpers.extraOptionsOptions
|
||||
helpers.neovim-plugin.extraOptionsOptions
|
||||
// {
|
||||
enable = mkEnableOption "rainbow-delimiters.nvim";
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ with lib; let
|
|||
cfg = config.plugins.treesitter-context;
|
||||
in {
|
||||
options.plugins.treesitter-context =
|
||||
helpers.extraOptionsOptions
|
||||
helpers.neovim-plugin.extraOptionsOptions
|
||||
// {
|
||||
enable = mkEnableOption "nvim-treesitter-context";
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ with lib; {
|
|||
"{}"
|
||||
desc;
|
||||
in
|
||||
helpers.extraOptionsOptions
|
||||
helpers.neovim-plugin.extraOptionsOptions
|
||||
// {
|
||||
enable =
|
||||
mkEnableOption
|
||||
|
|
|
@ -8,7 +8,7 @@ with lib; let
|
|||
helpers = import ../../helpers.nix {inherit lib;};
|
||||
in {
|
||||
options.plugins.ts-autotag =
|
||||
helpers.extraOptionsOptions
|
||||
helpers.neovim-plugin.extraOptionsOptions
|
||||
// {
|
||||
enable = mkEnableOption "nvim-ts-autotag";
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
}:
|
||||
with lib; {
|
||||
options.plugins.ts-context-commentstring =
|
||||
helpers.extraOptionsOptions
|
||||
helpers.neovim-plugin.extraOptionsOptions
|
||||
// {
|
||||
enable = mkEnableOption "nvim-ts-context-commentstring";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue