nix-community.nixvim/plugins/by-name/telescope/extensions/zoxide.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
411 B
Nix
Raw Normal View History

2025-04-06 01:57:17 +02:00
let
mkExtension = import ./_mk-extension.nix;
in
mkExtension {
name = "zoxide";
package = "telescope-zoxide";
settingsExample = {
prompt_title = "Zoxide Folder List";
mappings = {
"<C-b>" = {
keepinsert = true;
action.__raw = ''
function(selection)
file_browser.file_browser({ cwd = selection.path })
end
'';
};
};
};
}