mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 01:08:43 +02:00
plugins/telescope-manix: init
This commit is contained in:
parent
6cbf441c22
commit
650e204c07
3 changed files with 86 additions and 0 deletions
49
tests/test-sources/plugins/by-name/telescope/manix.nix
Normal file
49
tests/test-sources/plugins/by-name/telescope/manix.nix
Normal file
|
@ -0,0 +1,49 @@
|
|||
{
|
||||
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue