mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
19 lines
277 B
Nix
19 lines
277 B
Nix
|
{
|
||
|
lib,
|
||
|
helpers,
|
||
|
config,
|
||
|
pkgs,
|
||
|
...
|
||
|
}:
|
||
|
(
|
||
|
import ./_helpers.nix {inherit lib helpers config pkgs;}
|
||
|
)
|
||
|
.mkExtension {
|
||
|
name = "ui-select";
|
||
|
defaultPackage = pkgs.vimPlugins.telescope-ui-select-nvim;
|
||
|
|
||
|
settingsExample = {
|
||
|
specific_opts.codeactions = false;
|
||
|
};
|
||
|
}
|