mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-01 12:54:30 +02:00
helpers/neovim-plugin/mkNeovimPlugin: fix typo for deprecateExtraOptions
This commit is contained in:
parent
5cb26e9e3a
commit
6974a6a200
2 changed files with 4 additions and 4 deletions
|
@ -36,7 +36,7 @@ with lib; rec {
|
||||||
maintainers,
|
maintainers,
|
||||||
imports ? [],
|
imports ? [],
|
||||||
# deprecations
|
# deprecations
|
||||||
deprecateExtraConfig ? false,
|
deprecateExtraOptions ? false,
|
||||||
optionsRenamedToSettings ? [],
|
optionsRenamedToSettings ? [],
|
||||||
# options
|
# options
|
||||||
originalName ? name,
|
originalName ? name,
|
||||||
|
@ -59,10 +59,10 @@ with lib; rec {
|
||||||
imports
|
imports
|
||||||
++ (
|
++ (
|
||||||
optional
|
optional
|
||||||
deprecateExtraConfig
|
deprecateExtraOptions
|
||||||
(
|
(
|
||||||
mkRenamedOptionModule
|
mkRenamedOptionModule
|
||||||
(basePluginPath ++ ["extraConfig"])
|
(basePluginPath ++ ["extraOptions"])
|
||||||
(basePluginPath ++ ["settings"])
|
(basePluginPath ++ ["settings"])
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
|
@ -15,7 +15,7 @@ with lib;
|
||||||
|
|
||||||
maintainers = [maintainers.GaetanLepage];
|
maintainers = [maintainers.GaetanLepage];
|
||||||
|
|
||||||
deprecateExtraConfig = true;
|
deprecateExtraOptions = true;
|
||||||
optionsRenamedToSettings = [
|
optionsRenamedToSettings = [
|
||||||
"mirage"
|
"mirage"
|
||||||
"overrides"
|
"overrides"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue