mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-26 18:58:43 +02:00
Allow importing `mkExtension` without needing to supply any dependencies. All dependencies can be accessed via module args anyway.
11 lines
196 B
Nix
11 lines
196 B
Nix
let
|
|
mkExtension = import ./_mk-extension.nix;
|
|
in
|
|
mkExtension {
|
|
name = "ui-select";
|
|
package = "telescope-ui-select-nvim";
|
|
|
|
settingsExample = {
|
|
specific_opts.codeactions = false;
|
|
};
|
|
}
|