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