mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 01:08:43 +02:00
50 lines
724 B
Nix
50 lines
724 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.telescope = {
|
||
|
enable = true;
|
||
|
extensions.manix.enable = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
default = {
|
||
|
plugins.telescope = {
|
||
|
enable = true;
|
||
|
|
||
|
extensions.manix = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
manix_args = [ ];
|
||
|
cword = false;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.telescope = {
|
||
|
enable = true;
|
||
|
|
||
|
extensions.manix = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
manix_args = [ "-s" ];
|
||
|
cword = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
no-packages = {
|
||
|
plugins.telescope = {
|
||
|
enable = true;
|
||
|
|
||
|
extensions.manix = {
|
||
|
enable = true;
|
||
|
manixPackage = null;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|