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,
|
||||
imports ? [],
|
||||
# deprecations
|
||||
deprecateExtraConfig ? false,
|
||||
deprecateExtraOptions ? false,
|
||||
optionsRenamedToSettings ? [],
|
||||
# options
|
||||
originalName ? name,
|
||||
|
@ -59,10 +59,10 @@ with lib; rec {
|
|||
imports
|
||||
++ (
|
||||
optional
|
||||
deprecateExtraConfig
|
||||
deprecateExtraOptions
|
||||
(
|
||||
mkRenamedOptionModule
|
||||
(basePluginPath ++ ["extraConfig"])
|
||||
(basePluginPath ++ ["extraOptions"])
|
||||
(basePluginPath ++ ["settings"])
|
||||
)
|
||||
)
|
||||
|
|
|
@ -15,7 +15,7 @@ with lib;
|
|||
|
||||
maintainers = [maintainers.GaetanLepage];
|
||||
|
||||
deprecateExtraConfig = true;
|
||||
deprecateExtraOptions = true;
|
||||
optionsRenamedToSettings = [
|
||||
"mirage"
|
||||
"overrides"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue