You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,12 +73,12 @@ A template plugin can be found in (plugins/TEMPLATE.nix)[https://github.com/nix-
73
73
|**hasSettings**| Indicating whether the plugin has settings. A `settings` option will be created if true. | No |`true`|
74
74
|**imports**| Additional modules to import. | No |`[]`|
75
75
|**isColorscheme**| Indicating whether the plugin is a colorscheme. | No |`false`|
76
-
|**luaName**| The Lua name for the plugin. | No |`name` parameter |
76
+
|**moduleName**| The Lua name for the plugin. | No |`name` parameter |
77
77
|**maintainers**| Maintainers for the plugin. | No |`[]`|
78
78
|**optionsRenamedToSettings**| Options that have been renamed and move to the `settings` attribute. | No |`[]`|
79
-
|**packPathName**| The name of the plugin directory in [packpath](https://neovim.io/doc/user/options.html#'packpath'), usually the plugin's github repo name. E.g. `"foo-bar.nvim"`. | No |`name` parameter |
79
+
|**packPathName**| The name of the plugin directory in [packpath](https://neovim.io/doc/user/options.html#'packpath'), usually the plugin's github repo name. E.g. `"foo-bar.nvim"`. | No |`name` parameter |
80
80
|**package**| The nixpkgs package attr for this plugin. Can be a string, a list of strings, a module option, or any derivation. For example, "foo-bar-nvim" for `pkgs.vimPlugins.foo-bar-nvim`, or `[ "hello" "world" ]` will be referenced as `pkgs.hello.world`. | No |`name` parameter |
81
-
|**settingsDescription**| A description of the settings provided to the `setup` function. | No |`"Options provided to the require('${luaName}')${setup} function."`|
81
+
|**settingsDescription**| A description of the settings provided to the `setup` function. | No |`"Options provided to the require('${moduleName}')${setup} function."`|
82
82
|**settingsExample**| An example configuration for the plugin's settings. | No |`null`|
83
83
|**settingsOptions**| Options representing the plugin's settings. This is optional because `settings` is a "freeform" option. See [Declaring plugin options](#declaring-plugin-options). | No |`{}`|
84
84
|**setup**| The setup function for the plugin. | No |`".setup"`|
@@ -135,7 +135,7 @@ Such plugins are usually configured via vim globals, but often have no configura
135
135
|**isColorscheme**| Flag to indicate if the plugin is a colorscheme. | No |`false`|
136
136
|**maintainers**| The maintainers of the plugin. | No |`[]`|
137
137
|**optionsRenamedToSettings**| List of options renamed to settings. | No |`[]`|
138
-
|**packPathName**| The name of the plugin directory in [packpath](https://neovim.io/doc/user/options.html#'packpath'), usually the plugin's github repo name. E.g. `"foo-bar.vim"`. | No |`name` parameter |
138
+
|**packPathName**| The name of the plugin directory in [packpath](https://neovim.io/doc/user/options.html#'packpath'), usually the plugin's github repo name. E.g. `"foo-bar.vim"`. | No |`name` parameter |
139
139
|**package**| The nixpkgs package attr for this plugin. Can be a string, a list of strings, a module option, or any derivation. For example, "foo-bar-vim" for `pkgs.vimPlugins.foo-bar-vim`, or `[ "hello" "world" ]` will be referenced as `pkgs.hello.world`. | No |`name` parameter |
140
140
|**settingsExample**| Example settings for the plugin. | No |`null`|
141
141
|**settingsOptions**| Options representing the plugin's settings. This is optional because `settings` is a "freeform" option. See [Declaring plugin options](#declaring-plugin-options). | No |`{}`|
0 commit comments