mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-27 19:18:57 +02:00
plugins/telescope/fzf-native: add compatibility with combinePlugins
This commit is contained in:
parent
ce93f1724f
commit
61caa52fc5
2 changed files with 14 additions and 0 deletions
|
@ -52,4 +52,9 @@
|
||||||
override_file_sorter = false;
|
override_file_sorter = false;
|
||||||
case_mode = "ignore_case";
|
case_mode = "ignore_case";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extraConfig = cfg: {
|
||||||
|
# Native library is in build/libfzf.so
|
||||||
|
performance.combinePlugins.pathsToLink = [ "/build" ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,4 +22,13 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
combine-plugins = {
|
||||||
|
plugins.telescope = {
|
||||||
|
enable = true;
|
||||||
|
extensions.fzf-native.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
performance.combinePlugins.enable = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue