1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-13 14:02:46 +01:00
nixvim/plugins/telescope/extensions/ui-select.nix
2024-04-07 20:40:36 +02:00

18 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;
};
}