nixvim/config/telescope.nix

22 lines
345 B
Nix
Raw Normal View History

2024-08-20 05:43:03 +00:00
{ helpers, ... }:
{
plugins.telescope = {
enable = true;
};
keymaps = [
{
mode = [ "n" "i" ];
key = "<C-p>";
action = helpers.mkRaw ''
function()
require("telescope.builtin").find_files()
end
'';
options = {
desc = "Find files with telescope";
};
}
];
}